| java.lang.Object com.openedit.webui.list.DefaultWebListNode
DefaultWebListNode | public class DefaultWebListNode (Code) | | This class represents a node in a
ListModel . It has the attributes most
people will need: name, URL, and icon URL.
author: Eric and Matt |
DefaultWebListNode | public DefaultWebListNode(String inName)(Code) | | Create a tree node with the given name, without an icon or link.
Parameters: inName - DOCUMENT ME! |
DefaultWebListNode | public DefaultWebListNode(String inName, String inURL)(Code) | | Create a tree node with the given name and link, without an icon.
Parameters: inName - DOCUMENT ME! Parameters: inURL - DOCUMENT ME! |
DefaultWebListNode | public DefaultWebListNode(String inName, String inURL, String inIconURL)(Code) | | Create a tree node with the given name, link, and icon.
Parameters: inName - DOCUMENT ME! Parameters: inURL - DOCUMENT ME! Parameters: inIconURL - DOCUMENT ME! |
getIconURL | public String getIconURL()(Code) | | Gets the icon URL.
Returns a String |
getName | public String getName()(Code) | | Gets the name.
Returns a String |
getURL | public String getURL()(Code) | | Gets the URL.
Returns a String |
setIconURL | public void setIconURL(String iconURL)(Code) | | Sets the icon URL.
Parameters: iconURL - The icon URL to set |
setName | public void setName(String name)(Code) | | Sets the name.
Parameters: name - The name to set |
setURL | public void setURL(String url)(Code) | | Sets the URL.
Parameters: url - The URL to set |
|
|