swarm.activity
Interface ActionArgs

All Known Subinterfaces:
ActionCall, ActionForEach, ActionTo

public interface ActionArgs

Supertype of ActionCall, ActionTo, and ActionForEach.. The ActionArgs subtypes all implement a specific, hard-coded method for binding an action type to a fixed number of arguments. All the arguments must have types compatible with id type. Eventually, more generic methods for binding an action type to any number and types of arguments and return values will also be provided.


Method Summary
 java.lang.Object getArg1()
           
 java.lang.Object getArg2()
           
 java.lang.Object getArg3()
           
 int getNArgs()
           
 

Method Detail

getNArgs

public int getNArgs()

getArg1

public java.lang.Object getArg1()

getArg2

public java.lang.Object getArg2()

getArg3

public java.lang.Object getArg3()