Uses of Class
standup.joke.JokeGraphNode

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

Uses of JokeGraphNode in standup.joke
 

Subclasses of JokeGraphNode in standup.joke
 class JokeGraphNodeKeyword
          A node in a JokeGraph.
 class JokeGraphNodeTemplate
          A node in a JokeGraph that represents a span of 'canned' text that arose during template filling.
 

Fields in standup.joke with type parameters of type JokeGraphNode
(package private)  Hashtable<String,JokeGraphNode> JokeGraph.nodes
          A Hashtable that stores all the JokeGraphNode s in this JokeGraph.
 

Methods in standup.joke that return JokeGraphNode
 JokeGraphNode JokeGraph.getNode(String nodeID)
          Returns the node in this graph with the given ID.
 

Methods in standup.joke that return types with arguments of type JokeGraphNode
 Iterator<JokeGraphNode> JokeGraph.getNodes()
          Returns the nodes in this JokeGraph as an Iterator<JokeGraphNode>.
 

Methods in standup.joke with parameters of type JokeGraphNode
(package private)  void JokeGraph.addEdge(String edgeLabel, JokeGraphNode from, JokeGraphNode to, SourceProcess sp, String sl)
           
 Iterator<JokeGraphEdge> JokeGraph.getEdges(JokeGraphNode node)
          Returns the edges associated with the given JokeGraphNode as an Iterator<JokeGraphNode>.
 

Constructor parameters in standup.joke with type arguments of type JokeGraphNode
JokeGraph(Hashtable<String,JokeGraphNode> nodes, Hashtable<String,List<JokeGraphEdge>> edges, List<Keyword> schemaInstantiations, List<Keyword> clauseInstantiations, int nodeCounter)
          This is the constructor used to build JokeGraphs from existing ones, e.g.