Uses of Class
standup.joke.SourceProcess

Packages that use SourceProcess
standup.joke This package provides joke generation functionality and all its related data structures. 
 

Uses of SourceProcess in standup.joke
 

Fields in standup.joke declared as SourceProcess
(package private)  SourceProcess JokeGraphNode.sourceProcess
           
private  SourceProcess JokeGraphEdge.sourceProcess
           
 

Methods in standup.joke that return SourceProcess
 SourceProcess JokeGraphNode.getSourceProcess()
           
 SourceProcess JokeGraphEdge.getSourceProcess()
           
static SourceProcess SourceProcess.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SourceProcess[] SourceProcess.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in standup.joke with parameters of type SourceProcess
(package private)  void JokeGraph.addEdge(String edgeLabel, JokeGraphNode from, JokeGraphNode to, SourceProcess sp, String sl)
           
private  void JokeGraph.addLexNode(Bindings bindings, UnifiableVariable variable, SourceProcess sourceProcessCode, String sourceLabel)
          Given a UnifiableVariable that is bound to a Keyword, it creates a new JokeGraphNodeKeyword and replaces the binding of the variable to the node instead.
private  void JokeGraph.addPrecondition(UnifiableCompound instantiatedPrecond, SourceProcess sp, String sl)
          Adds edges representing the given (instantiated) Precondition.
private  void JokeGraph.addPreconditions(Bindings bindings, List<Precondition> preconditions, SourceProcess sourceProcess, String sourceLabel)
          Given a list of Preconditions, this method goes through them and adds representations of them to this JokeGraph.
private  void JokeGraph.addVars(Bindings b, UnifiableListVar vars, SourceProcess sourceProcessCode, String sourceLabel)
          This function adds a node to the jokegraph for a variable appearing in a lexical precondition, whether coming from a schema or a clause.
 

Constructors in standup.joke with parameters of type SourceProcess
JokeGraphEdge(String _l, String _f, String _t, SourceProcess _sp, String _sl)
           
JokeGraphNodeKeyword(String _l, Keyword _ls, SourceProcess _sp, String _sl)