Uses of Class
gov.nasa.arc.brahms.common.data.Activity

Packages that use Activity
gov.nasa.arc.brahms.common.data   
gov.nasa.arc.brahms.common.rt   
gov.nasa.arc.brahms.vm.data   
gov.nasa.arc.brahms.vm.rt   
 

Uses of Activity in gov.nasa.arc.brahms.common.data
 

Subclasses of Activity in gov.nasa.arc.brahms.common.data
 class BroadcastActivity
          The broadcast activity is a primitive activity but allows for the initiator to broadcast information into a location.
 class CommunicateActivity
          A communicate activity is a primitive activity but allows for the communication of beliefs between the initiating agent or object and another agent or object.
 class CompositeActivity
          A composite activity is an activity that has to be decomposed into more specific workframes.
 class ContainmentActivity
          The containment activity class is a generic class for the put and get activities managing the containment of agents and objects by other agents or objects.
 class CreateAgentActivity
          A create agent activity is a primitive activity allowing to dynamically create new agents.
 class CreateAreaActivity
          A create area activity is a primitive activity allowing to dynamically create new areas.
 class CreateObjectActivity
          A create object activity is a primitive activity allowing to dynamically create new objects or make copies of objects.
 class GestureActivity
          A gesture activity is a primitive activity but is used to have an agent or object make a gesture.
 class GetActivity
          A get activity is a primitive activity that allows an agent or object to pick up one or more objects and/or agents, referred to as items, to carry it with it while performing activities.
 class JavaActivity
          A java activity is a primitive activity but is used to call an externally specified activity written in Java.
 class MoveActivity
          A move activity is a primitive activity but is used to move an agent from its current location to the location as specified in the activity.
 class PrimitiveActivity
          A primitive activity is the lowest level of activity an agent or object works on for a specified amount of time.
 class PutActivity
          A put activity is a primitive activity that allows an agent or object to put down (drop) one or more objects and/or agents, referred to as items, carried by the agent or object performing the activity to no longer carry the item while performing future activities.
 

Methods in gov.nasa.arc.brahms.common.data that return Activity
 Activity Parameter.getActivity()
           
 Activity CompositeActivity.getActivityByDescriptor(java.lang.String descriptor)
          Returns the activity with the specified descriptor.
 Activity ActiveConcept.getActivityByDescriptor(java.lang.String descriptor)
          Returns the activity with the specified descriptor.
 Activity ActiveConcept.getActivityByDescriptor(java.lang.String descriptor, boolean includeParents)
          Returns the Activity with the specified descriptor.
 Activity CompositeActivity.getActivityByDescriptor(java.lang.String descriptor, boolean includeParents, ActiveInstance agent)
          Returns the activity with the specified descriptor.
protected  Activity ObjectInstance.getActivityByDescriptorRecursive(java.lang.String descriptor, boolean includeThis)
          Searches for the activity with the specified descriptor through the concept hierarchy breadth first.
protected  Activity Agent.getActivityByDescriptorRecursive(java.lang.String descriptor, boolean includeThis)
          Searches for the activity with the specified descriptor through the concept hierarchy breadth first.
protected abstract  Activity ActiveConcept.getActivityByDescriptorRecursive(java.lang.String descriptor, boolean includeThis)
          Searches for the activity with the specified descriptor through the concept hierarchy breadth first.
protected  Activity ActiveClass.getActivityByDescriptorRecursive(java.lang.String descriptor, boolean includeThis)
          Searches for the activity with the specified descriptor through the concept hierarchy breadth first.
 Activity ActiveConcept.getLocalActivityByDescriptor(java.lang.String descriptor)
          Returns the activity with the specified descriptor.
 

Methods in gov.nasa.arc.brahms.common.data that return types with arguments of type Activity
 java.util.LinkedList<Activity> CompositeActivity.getActivities(java.lang.String name)
          Returns the activities with the specified name.
 java.util.LinkedList<Activity> ActiveConcept.getActivities(java.lang.String name)
          Returns the activities with the specified name.
 java.util.LinkedList<Activity> ActiveConcept.getActivities(java.lang.String name, boolean includeParents)
          Returns the activities with the specified name.
protected  java.util.LinkedList<Activity> ObjectInstance.getActivitiesRecursive(boolean includeThis)
          Returns the active concepts' activities including the activities inherited from its parent class and their parent super classes.
protected  java.util.LinkedList<Activity> Agent.getActivitiesRecursive(boolean includeThis)
          Returns the active concepts' activities including the activities inherited from its parent class and their parent super classes.
protected abstract  java.util.LinkedList<Activity> ActiveConcept.getActivitiesRecursive(boolean includeThis)
          Returns the active concepts' activities including the activities inherited from its parent class and their parent super classes.
protected  java.util.LinkedList<Activity> ActiveClass.getActivitiesRecursive(boolean includeThis)
          Returns the active concepts' activities including the activities inherited from its parent class and their parent super classes.
protected  java.util.LinkedList<Activity> ObjectInstance.getActivitiesRecursive(java.lang.String name, boolean includeThis)
          Searches for all activities with the specified name through the concept hierarchy breadth first.
protected  java.util.LinkedList<Activity> Agent.getActivitiesRecursive(java.lang.String name, boolean includeThis)
          Searches for all activities with the specified name through the concept hierarchy breadth first.
protected abstract  java.util.LinkedList<Activity> ActiveConcept.getActivitiesRecursive(java.lang.String name, boolean includeThis)
          Searches for all activities with the specified name through the concept hierarchy breadth first.
protected  java.util.LinkedList<Activity> ActiveClass.getActivitiesRecursive(java.lang.String name, boolean includeThis)
          Searches for all activities with the specified name through the concept hierarchy breadth first.
 

Methods in gov.nasa.arc.brahms.common.data with parameters of type Activity
 boolean CompositeActivity.addActivity(Activity act)
           
 boolean ActiveConcept.addActivity(Activity act)
           
 IActivityCtx ActivityRef.createContext(Activity activity)
          Creates a new context for this activity reference, actually creating a context for the specified activity referenced by this activity reference.
 boolean CompositeActivity.removeActivity(Activity act)
           
 boolean ActiveConcept.removeActivity(Activity act)
           
 void Parameter.setActivity(Activity act)
           
 void Condition.setOwner(Activity act)
           
 

Uses of Activity in gov.nasa.arc.brahms.common.rt
 

Constructors in gov.nasa.arc.brahms.common.rt with parameters of type Activity
ActivityCtx(Activity act)
          Constructor, creates a new context for the specified Activity.
 

Uses of Activity in gov.nasa.arc.brahms.vm.data
 

Subclasses of Activity in gov.nasa.arc.brahms.vm.data
 class VMBroadcastActivity
          The VMBroadcastActivity is a broadcast activity with extensions for use in the virtual machine.
 class VMCommunicateActivity
          The VMCommunicateActivity is a communicate activity with extensions for use in the virtual machine.
 class VMCompositeActivity
          A VMCompositeActivity is a composite activity with extensions for use in the virtual machine.
 class VMCreateAgentActivity
          A VMCreateAgentActivity is a create agent activity with extensions for use in the virtual machine.
 class VMCreateAreaActivity
          A VMCreateAreaActivity is a create area activity with extensions for use in the virtual machine.
 class VMCreateObjectActivity
          A VMCreateObjectActivity is a create object activity with extensions for use in the virtual machine.
 class VMGestureActivity
          A VMGestureActivity is a gesture activity with extensions for use in the virtual machine.
 class VMGetActivity
          A VMGetActivity is a get activity with extensions for use in the virtual machine.
 class VMJavaActivity
          A VMJavaActivity is a java activity with extensions for use in the virtual machine.
 class VMMoveActivity
          A VMMoveActivity is a move activity with extensions for use in the virtual machine.
 class VMPrimitiveActivity
          A VMPrimitiveActivity is a primitive activity with extensions for use in the virtual machine.
 class VMPutActivity
          A VMPutActivity is a put activity with extensions for use in the virtual machine.
 

Uses of Activity in gov.nasa.arc.brahms.vm.rt
 

Constructors in gov.nasa.arc.brahms.vm.rt with parameters of type Activity
VMActivityCtx(Activity act)
          Constructor, creates a new context for the specified Activity.
VMActivityCtx(Activity act, java.lang.String id)
          Constructor, creates a new context for the specified Activity.
 



Copyright © 1997-2012 All Rights Reserved.