站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBOSS Portal 2.2 API 英文版文档

Node - JBOSS Portal 2.2 API 英文版文档


org.jboss.portal.common.tree
Interface Node

All Known Implementing Classes:
NodeImpl

public interface Node

A node of the tree.


Method Summary
 Node getChild(java.lang.String key)
          Returns a specific child of this node or null if it does not exist.
 java.util.Map getChildren()
          Returns a immutable map containing all the children of this node.
 FQN getID()
          Return the node id.
 java.lang.String getName()
          Return the node name.
 java.lang.Object getProperty(java.lang.String name)
          Return the property for this key or null if it does not exist.
 

Method Detail

getID

public FQN getID()
Return the node id.


getName

public java.lang.String getName()
Return the node name.


getProperty

public java.lang.Object getProperty(java.lang.String name)
Return the property for this key or null if it does not exist.


getChild

public Node getChild(java.lang.String key)
Returns a specific child of this node or null if it does not exist.


getChildren

public java.util.Map getChildren()
Returns a immutable map containing all the children of this node.