ix.ispace
Interface AgentGroup

All Known Implementing Classes:
AbstractAgentGroup, RelationshipGroup

public interface AgentGroup

Represents a collection of agents that cen be referred to for message-sending or other purposes.


Method Summary
 java.util.Collection getKnownMembers()
          Returns the collection of AgendData objects that represents the currently known members of this group.
 java.lang.String getName()
          Returns the name of this AgentGroup.
 

Method Detail

getName

java.lang.String getName()
Returns the name of this AgentGroup.


getKnownMembers

java.util.Collection getKnownMembers()
Returns the collection of AgendData objects that represents the currently known members of this group. If the membership is dynamic, this method should return a "snapshot" rather than a collection that will change as the membership changes. It should always return a (possibly empty) collection object, never null.

See Also:
AgentData