gov.nasa.arc.brahms.common.rt
Interface IRuntimeConstants

All Known Implementing Classes:
ActiveCtx, ActiveInstanceCtx, ActivityCtx, ActivityStateCtx, AgentCtx, AreaCtx, AssignmentCtx, AvailableCtx, BeliefCtx, BrahmsObjectCtx, BroadcastActivityCtx, CommunicateActivityCtx, CompleteCtx, CompositeActivityCtx, ConceptCtx, ConceptualInstanceCtx, ConditionCtx, ConsequenceCtx, ContainedInstanceCtx, ContainmentActivityCtx, CreateAgentActivityCtx, CreateAreaActivityCtx, CreateObjectActivityCtx, DeleteCtx, DetectableCtx, DetectCtx, FactCtx, FrameCtx, FrameStateCtx, GestureActivityCtx, GetActivityCtx, ImpasseCtx, InterruptCtx, JavaActivityCtx, MethodInvocationCtx, ModelCtx, MoveActivityCtx, ObjectInstanceCtx, ParameterCtx, PartCtx, PreconditionCtx, PrimitiveActivityCtx, PutActivityCtx, StatementCtx, ThoughtframeCtx, TransferDefinitionCtx, TriggerCtx, UnavailableCtx, VariableCtx, VMActiveInstanceCtx, VMActivityCtx, VMAgentCtx, VMAreaCtx, VMAssignmentCtx, VMBeliefCtx, VMBroadcastActivityCtx, VMCommunicateActivityCtx, VMCompositeActivityCtx, VMConceptualInstanceCtx, VMConsequenceCtx, VMContainmentActivityCtx, VMCreateAgentActivityCtx, VMCreateAreaActivityCtx, VMCreateObjectActivityCtx, VMDeleteCtx, VMDetectableCtx, VMDetectCtx, VMExternalAgentCtx, VMFactCtx, VMFrameCtx, VMGestureActivityCtx, VMGetActivityCtx, VMJavaActivityCtx, VMMethodInvocationCtx, VMMoveActivityCtx, VMObjectInstanceCtx, VMPathCtx, VMPreconditionCtx, VMPrimitiveActivityCtx, VMPutActivityCtx, VMStatementCtx, VMThoughtframeCtx, VMTransferDefinitionCtx, VMTriggerCtx, VMVariableCtx, VMWorkframeCtx, WorkframeCtx

public interface IRuntimeConstants

This interface defines the constants used by the runtime data package (rt).

Version:
19 June 2000
Author:
Ron van Hoof

Field Summary
static int ABORTED
          Marks a frame or activity as aborted by a detectable
static int ACTIVE
          Marks a frame or activity as active, currently worked on
static int ACTIVITY
          Marks a statement as created by an activity internally generate by the engine
static int AVAILABLE
          Marks a frame or activity available (not started, ready)
static int COMPLETED
          Marks a frame or activity as completed by a detectable
static int CONSEQUENCE
          Marks a statement as created by a consequence
static int DETECTABLE
          Marks a statement as created by a detectable
static int ENDED
          Marks a frame or activity as ended, ended due to no more work
static int ENGINE
          Marks a statement as created by the engine as a reflection statement
static int EXTERNAL_AGENT
          Marks a statement as created by an external agent
static int FROM
          Marks the direction of a transfer definition as 'from' the communicated with instances
static int IMPASSED
          Marks a frame or activity as impassed
static int INITIAL
          Marks a statement as an initial statement defined for a concept
static int INTERRUPTED
          Marks a frame or activity as interrupted
static int JAVA_PROPERTY
          Marks a statement as created by Java property change support
static java.lang.String sABORTED
          Text version of aborted state for use in log messages
static java.lang.String sACTIVE
          Text version of active state for use in log messages
static java.lang.String sAVAILABLE
          Text version of available state for use in log messages
static java.lang.String sCOMPLETED
          Text version of completed state for use in log messages
static java.lang.String sENDED
          Text version of ended state for use in log messages
static java.lang.String sIMPASSED
          Text version of impassed state for use in log messages
static java.lang.String sINTERRUPTED
          Text version of interrupted state for use in log messages
static java.lang.String sUNAVAILABLE
          Text version of unavailable state for use in log messages
static int TO
          Marks the direction of a transfer definition as 'to' the communicated with instances
static int TRANSFER
          Marks a statement as created by a transfer definition in a communication
static int UNAVAILABLE
          Marks a frame or activity unavailable (not started, not ready)
 

Field Detail

UNAVAILABLE

static final int UNAVAILABLE
Marks a frame or activity unavailable (not started, not ready)

See Also:
Constant Field Values

AVAILABLE

static final int AVAILABLE
Marks a frame or activity available (not started, ready)

See Also:
Constant Field Values

ACTIVE

static final int ACTIVE
Marks a frame or activity as active, currently worked on

See Also:
Constant Field Values

INTERRUPTED

static final int INTERRUPTED
Marks a frame or activity as interrupted

See Also:
Constant Field Values

IMPASSED

static final int IMPASSED
Marks a frame or activity as impassed

See Also:
Constant Field Values

ABORTED

static final int ABORTED
Marks a frame or activity as aborted by a detectable

See Also:
Constant Field Values

COMPLETED

static final int COMPLETED
Marks a frame or activity as completed by a detectable

See Also:
Constant Field Values

ENDED

static final int ENDED
Marks a frame or activity as ended, ended due to no more work

See Also:
Constant Field Values

sUNAVAILABLE

static final java.lang.String sUNAVAILABLE
Text version of unavailable state for use in log messages

See Also:
Constant Field Values

sAVAILABLE

static final java.lang.String sAVAILABLE
Text version of available state for use in log messages

See Also:
Constant Field Values

sACTIVE

static final java.lang.String sACTIVE
Text version of active state for use in log messages

See Also:
Constant Field Values

sINTERRUPTED

static final java.lang.String sINTERRUPTED
Text version of interrupted state for use in log messages

See Also:
Constant Field Values

sIMPASSED

static final java.lang.String sIMPASSED
Text version of impassed state for use in log messages

See Also:
Constant Field Values

sABORTED

static final java.lang.String sABORTED
Text version of aborted state for use in log messages

See Also:
Constant Field Values

sCOMPLETED

static final java.lang.String sCOMPLETED
Text version of completed state for use in log messages

See Also:
Constant Field Values

sENDED

static final java.lang.String sENDED
Text version of ended state for use in log messages

See Also:
Constant Field Values

INITIAL

static final int INITIAL
Marks a statement as an initial statement defined for a concept

See Also:
Constant Field Values

CONSEQUENCE

static final int CONSEQUENCE
Marks a statement as created by a consequence

See Also:
Constant Field Values

DETECTABLE

static final int DETECTABLE
Marks a statement as created by a detectable

See Also:
Constant Field Values

TRANSFER

static final int TRANSFER
Marks a statement as created by a transfer definition in a communication

See Also:
Constant Field Values

ACTIVITY

static final int ACTIVITY
Marks a statement as created by an activity internally generate by the engine

See Also:
Constant Field Values

ENGINE

static final int ENGINE
Marks a statement as created by the engine as a reflection statement

See Also:
Constant Field Values

EXTERNAL_AGENT

static final int EXTERNAL_AGENT
Marks a statement as created by an external agent

See Also:
Constant Field Values

JAVA_PROPERTY

static final int JAVA_PROPERTY
Marks a statement as created by Java property change support

See Also:
Constant Field Values

TO

static final int TO
Marks the direction of a transfer definition as 'to' the communicated with instances

See Also:
Constant Field Values

FROM

static final int FROM
Marks the direction of a transfer definition as 'from' the communicated with instances

See Also:
Constant Field Values


Copyright © 1997-2012 All Rights Reserved.