Package pulse.util
Class Group
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- All Implemented Interfaces:
Serializable
,Descriptive
- Direct Known Subclasses:
Accessible
,Log
public class Group extends UpwardsNavigable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Group()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Group
access(String simpleName)
Searches for a specificAccessible
with asimpleName
.List<Group>
children()
Selects only thoseAccessible
s, the parent of which isthis
.static Set<Group>
contents(Group root)
Recursively analyses allGroup
objects that are identified as subgroups toroot
(explicitly checks that subgroups exclude parents ofroot
) and chooses those for which anExporter
exists.String
getDescriptor()
The same asgetSimpleName
in this implementation.String
getSimpleName()
This will generate a simple name for identifying thisAccessible
.List<Group>
subgroups()
Tries to access getter methods to retrieve allAccessible
instances belonging to this object.-
Methods inherited from class pulse.util.UpwardsNavigable
addHierarchyListener, describe, getHierarchyListeners, getParent, identify, initListeners, removeHierarchyListener, removeHierarchyListeners, setParent, specificAncestor, tellParent
-
-
-
-
Method Detail
-
subgroups
public List<Group> subgroups()
Tries to access getter methods to retrieve all
Accessible
instances belonging to this object. Ignores any methods that return instances of the same class asthis
one.- Returns:
- a
List
containingAccessible
objects which could be accessed by the declared getter methods.
-
contents
public static Set<Group> contents(Group root)
Recursively analyses all
Group
objects that are identified as subgroups toroot
(explicitly checks that subgroups exclude parents ofroot
) and chooses those for which anExporter
exists.- Parameters:
root
- the root group.- Returns:
- a set of unique
Group
s objects.
-
access
public Group access(String simpleName)
Searches for a specificAccessible
with asimpleName
.- Parameters:
simpleName
- the name of theAccessible
,- Returns:
- the
Accessible
object. - See Also:
subgroups()
-
children
public List<Group> children()
Selects only those
Accessible
s, the parent of which isthis
. Note that allAccessible
s are required to explicitly adopt children by calling thesetParent()
method.- Returns:
- a
List
of children that thisAccessible
has adopted. - See Also:
subgroups()
-
getDescriptor
public String getDescriptor()
The same asgetSimpleName
in this implementation.- Returns:
- the simple name of the declaring class.
- See Also:
getSimpleName()
-
getSimpleName
public String getSimpleName()
This will generate a simple name for identifying thisAccessible
.- Returns:
- the simple name of the declaring class.
-
-