Interface MetaDataNode
-
public interface MetaDataNode
Represents a single metadata definition in a hierarchical tree of meta data as retrieved byMetaDataRetriever
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MetaDataNode
add(MetaDataNode child)
MetaDataNode
getChildByPath(java.lang.String relPath)
java.util.Iterator<MetaDataNode>
getChildren()
java.lang.String
getId()
java.lang.String
getLabel()
Options
getOptions()
java.lang.String
getPath()
java.lang.String
getType()
boolean
hasOptions()
-
-
-
Method Detail
-
getId
java.lang.String getId()
-
getPath
java.lang.String getPath()
-
getLabel
java.lang.String getLabel()
-
getType
java.lang.String getType()
-
add
MetaDataNode add(MetaDataNode child)
-
getChildren
java.util.Iterator<MetaDataNode> getChildren()
-
getChildByPath
MetaDataNode getChildByPath(java.lang.String relPath)
-
hasOptions
boolean hasOptions()
-
getOptions
Options getOptions()
-
-