Modifier and Type | Method and Description |
---|---|
Group |
Group.cloneObject()
Creates and returns a deep copy of this
Group object. |
Group |
ListOfGroups.createGroup()
Creates a new
Group object, adds it to this ListOfGroups object and
returns the Group object created. |
Group |
GroupsModelPlugin.createGroup()
Creates a new
Group object |
Group |
ListOfGroups.get(long n)
Get a
Group from the ListOfGroups . |
Group |
ListOfGroups.get(java.lang.String sid)
Get a
Group from the ListOfGroups based on its identifier. |
Group |
GroupsModelPlugin.getGroup(long n)
Returns the nth
Group . |
Group |
GroupsModelPlugin.getGroup(java.lang.String sid)
Get a
Group from the GroupsModelPlugin based on its identifier. |
Group |
ListOfGroups.remove(long n)
Removes the nth
Group from this ListOfGroups and returns a pointer to it. |
Group |
ListOfGroups.remove(java.lang.String sid)
Removes the
Group from this ListOfGroups based on its identifier and
returns a pointer to it. |
Group |
GroupsModelPlugin.removeGroup(long n)
Removes the nth
Group . |
Group |
GroupsModelPlugin.removeGroup(java.lang.String sid)
Removes the
Group from this GroupsModelPlugin based on its identifier. |
Modifier and Type | Method and Description |
---|---|
int |
ListOfGroups.addGroup(Group g)
Adds a copy of the given
Group to this ListOfGroups . |
int |
GroupsModelPlugin.addGroup(Group g)
Adds a copy of the given
Group to this GroupsModelPlugin . |
Constructor and Description |
---|
Group(Group orig)
Copy constructor for
Group . |