Uses of Class
lime.Location

Packages that use Location
lime   
 

Uses of Location in lime
 

Subclasses of Location in lime
 class AgentLocation
          Defines the location of a tuple with respect to an Agent.
 class HostLocation
          Defines the location of a tuple within the host-level tuple space associated with a host.
 

Methods in lime that return Location
 Location Reaction.getCurrentLocation()
          Get the current location associated with the reaction.
 

Methods in lime with parameters of type Location
 lights.interfaces.ITuple LimeTupleSpace.inp(Location current, AgentLocation destination, lights.interfaces.ITuple template)
          Retrieves a tuple that matches a given template, and removes it from the tuple space, or returns null if no matching tuple exists.
 lights.interfaces.ITuple[] LimeTupleSpace.ing(Location current, AgentLocation destination, lights.interfaces.ITuple template)
          Retrieve all tuples that match a pattern.
 lights.interfaces.ITuple LimeTupleSpace.in(Location current, AgentLocation destination, lights.interfaces.ITuple template)
          Retrieves a tuple that matches a given template, and removes it from the tuple space.
 lights.interfaces.ITuple LimeTupleSpace.rdp(Location current, AgentLocation destination, lights.interfaces.ITuple template)
          Retrieves a copy of a tuple that matches a given template, or returns null if no matching tuple exists.
 lights.interfaces.ITuple[] LimeTupleSpace.rdg(Location current, AgentLocation destination, lights.interfaces.ITuple template)
          Copy all tuples that match a pattern.
 lights.interfaces.ITuple LimeTupleSpace.rd(Location current, AgentLocation destination, lights.interfaces.ITuple template)
          Retrieves a copy of a tuple that matches a given template.
 

Constructors in lime with parameters of type Location
LocalizedReaction(Location current, AgentLocation destination, lights.interfaces.ITuple template, ReactionListener listener, short mode)
          Create the reaction, by specifying location information.