Uses of Interface
standup.xml.XMLizable

Packages that use XMLizable
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. 
standup.profiling This package provides facilities for an arbitrary profileable application to be configurable through user profiles, a collection of files which can be loaded and saved to a specific folder. 
standup.xml Provides classes and interfaces that handle loading and saving of the various XML-based files in STANDUP. 
 

Uses of XMLizable in standup.clouds
 

Classes in standup.clouds that implement XMLizable
 class OptionsCloudFrontend
           
 class ProfileCloudFrontend
          This class stores all user parameters relating to the frontend.
 

Uses of XMLizable in standup.joke
 

Classes in standup.joke that implement XMLizable
 class JokeGraph
          A JokeGraph records all the internal structure of a JokeStructure, allowing us to inspect all the choices made by the Generator during the various stages of joke generation, i.e.
 class JokeGraphEdge
          An edge in a JokeGraph.
 class JokeGraphNode
          A node in a JokeGraph.
 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.
 class JokeSet
          This class represents a set of JokeStructures.
 class JokeStructure
          A generated joke, with all its underlying data structures.
 class OptionsJokeGeneration
          A Options representing the various settings relating to joke generation.
 class ProfileJokeGeneration
          A Profile relating to joke generation.
 

Uses of XMLizable in standup.lexicon
 

Classes in standup.lexicon that implement XMLizable
 class CustomLexicon
          A CustomLexicon is a LexemeSet that has a label and is XMLsaveable.
 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 LexemeSet
          A LexemeSet is, appropriately enough, a set of Lexemes.
 class OptionsLexicon
          A subclass of Options that stores user-specific settings for a ProfileLexicon.
 class ProfileLexicon
          A Profile relating to lexical resources.
 class StructElement
          A StructElement is an element that can appear within a WordStruct.
 class Topic
          A Topic represents a collection of Lexemes that are related in some sense, e.g.
 class WordForm
          A WordForm is a word with a unique orthographic and phonetic spelling.
 class WordSequence
          Unsurprisingly, a sequence of words.
 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.
 

Uses of XMLizable in standup.profiling
 

Classes in standup.profiling that implement XMLizable
 class Options
          A subclass of Options stores various option settings chosen by a user.
 class OptionsPackage
          An OptionsPackage contains a collection of Options, and defines a complete configuration of a STANDUP system.
 class Profile
          A subclass of Profile stores user-specific information for a corresponding Profileable implementation.
 

Uses of XMLizable in standup.xml
 

Subinterfaces of XMLizable in standup.xml
 interface XMLsaveable
          An object that implements this interface can be saved to (and loaded from) an XML file.
 

Method parameters in standup.xml with type arguments of type XMLizable
static void XMLUtils.writeCollection(Writer out, String indent, String tag, Collection<? extends XMLizable> elements)