Uses of Class
standup.lexicon.StructElement

Packages that use StructElement
standup.clouds This package provides the implementation for the STANDUP user interface. 
standup.joke This package provides joke generation functionality and all its related data structures. 
standup.lexicon This package provides classes and interfaces that handle access and manipulation of the STANDUP lexicon. 
 

Uses of StructElement in standup.clouds
 

Method parameters in standup.clouds with type arguments of type StructElement
private  boolean CloudLabel.isStartOfPseudoLexeme(List<? extends StructElement> ws, int ii)
           
 

Constructors in standup.clouds with parameters of type StructElement
STANDUPSpeakable(StructElement x, StructElement y)
           
 

Uses of StructElement in standup.joke
 

Methods in standup.joke that return StructElement
private  StructElement Generator.elaborateTemplateItem(String parentTemplateNodeID, int childNumber, String templateLabel, JokeGraphNodeKeyword nodeLex, JokeGraph g)
          Elaborates a lexical element, i.e.
private  StructElement Generator.elaborateTemplateItem(String parentTemplateNodeID, int childNumber, UnifiableCompound b, JokeGraph g)
          Recursively performs template filling on a template item that specifies another template
private  StructElement Generator.elaborateTemplateItem(UnifiableConstant bString, Unifiable bsuccNODE, JokeGraph g)
           
 

Uses of StructElement in standup.lexicon
 

Subclasses of StructElement in standup.lexicon
 class Keyword
          A Keyword is an object appearing in a WordStruct that is not 'canned' or 'filler' text.
 class Lexeme
          A Lexeme is a specific sense, or meaning of a word.
 class WordForm
          A WordForm is a word with a unique orthographic and phonetic spelling.
 class WordString
          A simple String representing the orthography of a word.
 class WordStruct
          A structure that has a label and a sequence of StructElements, which can be one of Lexeme, WordForm, WordString or WordStruct.
 

Fields in standup.lexicon with type parameters of type StructElement
private  List<? extends StructElement> WordStruct.structElements
           
 

Methods in standup.lexicon that return types with arguments of type StructElement
 List<? extends StructElement> WordStruct.getWordStructAsList()
          Returns the List of StructElements belonging to this WordStruct.
 

Constructor parameters in standup.lexicon with type arguments of type StructElement
WordStruct(String _l, List<? extends StructElement> _se)
          Constructor that provides the required label and list of StructElements.