Uses of Class
story.scheherazade.misc.ActionType

Packages that use ActionType
story.scheherazade.admin   
story.scheherazade.elements   
story.scheherazade.exceptions   
story.scheherazade.misc   
story.scheherazade.parameters   
story.scheherazade.verbalizer   
 

Uses of ActionType in story.scheherazade.admin
 

Methods in story.scheherazade.admin with parameters of type ActionType
 AssignedAction StoryInterpreter.assignAction(TimelineID timelineID, TransitionTime time, ActionType actionType, SCHArguments arguments)
           
 void StoryInterpreter.declareAction(TimelineID timelineID, ActionType actionType, StoryAssertion parameters, WordNetOffset offset)
           
 void StoryInterpreter.declareAction(TimelineID timelineID, ActionType actionType, StoryAssertion parameters, WordNetOffset offset, ActionType superAction)
           
 void StoryInterpreter.declareAntonymy(TimelineID timelineID, ActionType action1, ActionType action2)
           
 StoryAssertion StoryInterpreter.getActionParameters(TimelineID timelineID, ActionType actionType)
           
 ValidAction StoryInterpreter.makeValidAction(TimelineID timelineID, ActionType actionType, SCHArguments arguments)
           
 ValidAction StoryInterpreter.makeValidAction(TimelineID timelineID, ActionType actionType, SCHArguments arguments, boolean truthAssertion, PredicateMode mode)
           
 ValidAction StoryInterpreter.makeValidAction(TimelineID timelineID, ActionType actionType, SCHArguments arguments, PredicateMode mode)
           
 

Uses of ActionType in story.scheherazade.elements
 

Methods in story.scheherazade.elements that return ActionType
 ActionType Action.getType()
          Get the ID of the type of action.
 ActionType Timeline.normalizeActionType(NodeAddress timeline, ActionType actionType)
           
 

Methods in story.scheherazade.elements with parameters of type ActionType
 void Timeline.declareAction(NodeAddress timeline, ActionType actionType, StoryAssertion expansionParams, WordNetOffset offset, ActionType superAction)
          Declare a new type of Action and define its parameters.
 void Narrative.declareAction(TimelineID timelineID, ActionType actionType, StoryAssertion parameters, WordNetOffset offset, ActionType superAction)
          Declare a new Action in a timeline.
 void Timeline.declareAntonymy(NodeAddress timeline, ActionType action1, ActionType action2)
          Declare an antonymous relationship between two actions.
 void Narrative.declareAntonymy(TimelineID timelineID, ActionType action1, ActionType action2)
          Declare antonymy between two actions.
 StoryAssertion Timeline.getActionParameters(NodeAddress timeline, ActionType actionType)
          Get the parameters of a declared Action
 StoryAssertion Narrative.getActionParameters(TimelineID timelineID, ActionType actionType)
          Get the parameters of an Action declared in a Timeline.
 ValidAction Timeline.makeValidAction(NodeAddress timeline, ActionType actionType, SCHArguments arguments, int truthDegree, PredicateMode mode)
          Define an instance of a previously declared Action.
 ValidAction Narrative.makeValidAction(TimelineID timelineID, ActionType actionType, SCHArguments arguments, int truthDegree, PredicateMode mode)
          Create an instance of a previously declared Action.
 ActionType Timeline.normalizeActionType(NodeAddress timeline, ActionType actionType)
           
static void KBTools.registerCharacterAction(StoryInterpreter interpreter, PlannerRepository planners, TimelineID timeline, ActionType action, WordNetOffset offset, ActionType superAction, java.lang.String presentSimple, java.lang.String pastSimple, java.lang.String infinitive, java.lang.String progressive)
           
static void KBTools.registerCharacterCharacterAction(StoryInterpreter interpreter, PlannerRepository planners, TimelineID timeline, ActionType action, WordNetOffset offset, ActionType superAction, java.lang.String presentSimple, java.lang.String pastSimple, java.lang.String infinitive, java.lang.String progressive)
           
static void KBTools.registerCharacterPropAction(StoryInterpreter interpreter, PlannerRepository planners, TimelineID timeline, ActionType action, WordNetOffset offset, ActionType superAction, java.lang.String presentSimple, java.lang.String pastSimple, java.lang.String infinitive, java.lang.String progressive)
           
static void KBTools.registerEmptyAction(StoryInterpreter interpreter, PlannerRepository planners, TimelineID timeline, ActionType action, WordNetOffset offset, ActionType superAction, java.lang.String presentSimple, java.lang.String pastSimple, java.lang.String infinitive, java.lang.String progressive)
           
static void KBTools.registerPropAction(StoryInterpreter interpreter, PlannerRepository planners, TimelineID timeline, ActionType action, WordNetOffset offset, ActionType superAction, java.lang.String presentSimple, java.lang.String pastSimple, java.lang.String infinitive, java.lang.String progressive)
           
static java.lang.StringBuffer Action.render(ActionType actionType, SCHArguments arguments, int truthDegree, PredicateMode mode)
          A static function that renders a ActionType and arguments as they would be rendered if they were part of an Action.
 

Constructors in story.scheherazade.elements with parameters of type ActionType
Action(ActionType actionType, SCHArguments arguments, int truthDegree, PredicateMode mode)
           
ValidAction(Timeline timelineHandler, NodeAddress timeline, ActionType actionType, SCHArguments arguments, int truthDegree, PredicateMode mode)
           
 

Uses of ActionType in story.scheherazade.exceptions
 

Constructors in story.scheherazade.exceptions with parameters of type ActionType
UndeclaredAction(ActionType action, NodeID timeline)
           
 

Uses of ActionType in story.scheherazade.misc
 

Fields in story.scheherazade.misc declared as ActionType
static ActionType ActionType.Universal
           
 

Methods in story.scheherazade.misc that return ActionType
 ActionType SCHHashtable.getActionType(java.lang.String key)
          Get an ActionType.
 ActionType ActionType.makeClone()
           
 

Methods in story.scheherazade.misc with parameters of type ActionType
 void ActionTypeSet.add(ActionType name)
           
 void SCHHashtable.setActionType(java.lang.String key, ActionType value)
          Set ActionType.
 

Constructors in story.scheherazade.misc with parameters of type ActionType
ActionType(ActionType type, WordNetOffset offset, ActionType supertype)
          Constructor that supplements an ActionType with supertype metadata.
 

Uses of ActionType in story.scheherazade.parameters
 

Constructors in story.scheherazade.parameters with parameters of type ActionType
AssignedActionParameter(TimelineID timeline, ActionType actionType)
          Constructor to match a particular action
AssignedActionParameter(TimelineID timeline, ActionType actionType, VariableID reference)
          Constructor to match a particular action and leave an outreference
ValidActionParameter(SemanticRole role, TimelineID timeline, PredicateMode mode, ActionType actionType)
           
ValidAssignedActionParameter(SemanticRole role, TimelineID timeline, ActionType actionType)
          Require a valid assigned Action in a certain Timeline of a certain action type.
 

Uses of ActionType in story.scheherazade.verbalizer
 

Methods in story.scheherazade.verbalizer that return ActionType
 ActionType ActionPlanner.getType()
           
 

Methods in story.scheherazade.verbalizer with parameters of type ActionType
 ActionPlanner PlannerRepository.getActionPlanner(ActionType type)
           
 boolean PlannerRepository.hasActionPlanner(ActionType type)
           
 

Constructors in story.scheherazade.verbalizer with parameters of type ActionType
ActionPlanner(ActionType type)
           
 



Copyright © 2011 David K. Elson. All Rights Reserved.