Package pulse.util

Class Group

    • Constructor Detail

      • Group

        public Group()
    • 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 as this one.

        Returns:
        a List containing Accessible 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 to root (explicitly checks that subgroups exclude parents of root) and chooses those for which an Exporter exists.

        Parameters:
        root - the root group.
        Returns:
        a set of unique Groups objects.
      • access

        public Group access​(String simpleName)
        Searches for a specific Accessible with a simpleName.
        Parameters:
        simpleName - the name of the Accessible,
        Returns:
        the Accessible object.
        See Also:
        subgroups()
      • children

        public List<Group> children()

        Selects only those Accessibles, the parent of which is this. Note that all Accessibles are required to explicitly adopt children by calling the setParent() method.

        Returns:
        a List of children that this Accessible has adopted.
        See Also:
        subgroups()
      • getDescriptor

        public String getDescriptor()
        The same as getSimpleName 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 this Accessible.
        Returns:
        the simple name of the declaring class.