Uses of Class
com.ail.core.configure.Group

Packages that use Group
com.ail.core   
com.ail.core.configure   
 

Uses of Group in com.ail.core
 

Methods in com.ail.core that return Group
 Group Core.getGroup(java.lang.String name)
          Fetch the named group the from current configuration.
 Group CoreProxy.getGroup(java.lang.String name)
          Fetch the named group the from current configuration.
 

Uses of Group in com.ail.core.configure
 

Subclasses of Group in com.ail.core.configure
 class Builder
          A "Builder" represents an instance of a class builder - i.e.
 class Builders
           
 class Command
           
 class Configuration
          This class represents the top level of the composite.
 class Service
           
 class Type
           
 class Types
          This class is simply a binder containing a number of objects of type 'Type'.
 

Methods in com.ail.core.configure that return Group
 Group Group.findGroup(java.lang.String groupName)
          Find a group using a dot seperated group name.
 Group Group.getGroup(int index)
          Fetch a specific group by it's index in the group.
 Group Configure.getGroup(java.lang.String name)
          Retrieve a specific group by name.
 Group ConfigurationHandler.getGroup(java.lang.String name, ConfigurationOwner owner, CoreUser user, Core core)
          Fetch the named group the from current configuration.
 Group Group.removeGroup(int index)
          Remove (delete) a specific group from this group.
 

Methods in com.ail.core.configure that return types with arguments of type Group
 java.util.List<Group> Group.getGroup()
          Return a list of the groups in the group as an array.
 java.util.ArrayList<Group> Configuration.getOnlyGroups()
          Get just the Groups in this configuration - ignoring Types & Builders.
 

Methods in com.ail.core.configure with parameters of type Group
 void Group.addGroup(Group vGroup)
          Add a Parameter group to this group.
 void Group.setGroup(int index, Group vGroup)
          Set the group at a specified index in this group, this replaces the group currently at that index.
 

Method parameters in com.ail.core.configure with type arguments of type Group
 void Group.setGroup(java.util.List<Group> group)
          Replace all the groups in the group with those in the array provided.
 void Configuration.setOnlyGroups(java.util.ArrayList<Group> groups)