|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.tools.GroupTree
public class GroupTree
A group tree manages operator descriptions in a tree like manner. This is useful to present the operators in groups and subgroups and eases operator selection in the GUI.
Field Summary | |
---|---|
private java.util.Map<java.lang.String,GroupTree> |
children
The subgroups of this group. |
private java.lang.String |
name
The name of this group. |
private java.util.Set<OperatorDescription> |
operators
The list of operator in this group. |
private GroupTree |
parent
The parent of this group. |
Constructor Summary | |
---|---|
GroupTree(java.lang.String name)
Creates a new group tree with no operators and children. |
Method Summary | |
---|---|
private void |
addAllOperatorDescriptions(java.util.Set<OperatorDescription> operators)
|
void |
addOperatorDescription(OperatorDescription description)
Adds an operator to this group. |
void |
addSubGroup(GroupTree child)
Adds a subgroup to this group. |
java.util.Set<OperatorDescription> |
getAllOperatorDescriptions()
Returns all operator in this group and recursively the operators of all children. |
java.lang.String |
getName()
Returns the name of this group. |
java.util.Set<OperatorDescription> |
getOperatorDescriptions()
Returns all operator descriptions in this group or an empty list if this group does not contain any operators. |
GroupTree |
getParent()
Returns the parent of this group. |
GroupTree |
getSubGroup(java.lang.String name)
Returns the subgroup with the given name. |
java.util.Collection<GroupTree> |
getSubGroups()
Returns a set of all children group trees. |
void |
setParent(GroupTree parent)
Sets the parent of this group. |
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private java.util.Set<OperatorDescription> operators
private java.util.Map<java.lang.String,GroupTree> children
private java.lang.String name
private GroupTree parent
Constructor Detail |
---|
public GroupTree(java.lang.String name)
Method Detail |
---|
public java.lang.String getName()
public void setParent(GroupTree parent)
public GroupTree getParent()
public void addSubGroup(GroupTree child)
public GroupTree getSubGroup(java.lang.String name)
public java.util.Collection<GroupTree> getSubGroups()
public void addOperatorDescription(OperatorDescription description)
public java.util.Set<OperatorDescription> getOperatorDescriptions()
public java.util.Set<OperatorDescription> getAllOperatorDescriptions()
private void addAllOperatorDescriptions(java.util.Set<OperatorDescription> operators)
public java.lang.String toString()
toString
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |