Uses of Class
standup.joke.JokeTypeSet

Packages that use JokeTypeSet
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. 
 

Uses of JokeTypeSet in standup.clouds
 

Constructors in standup.clouds with parameters of type JokeTypeSet
CloudButtonJokeTypeChooser(CloudFrontend f, CloudButton _parent, CloudLabel _label, CloudLabel _msg, JokeTypeSet lxs)
           
 

Uses of JokeTypeSet in standup.joke
 

Fields in standup.joke declared as JokeTypeSet
(package private)  JokeTypeSet OptionsGUIJokeGeneration.masterJokeTypeSet
           
private  JokeTypeSet JokeConstraintTypes.types
           
private  JokeTypeSet Generator.types
          A JokeTypeSet representing all available JokeTypes.
 

Methods in standup.joke that return JokeTypeSet
 JokeTypeSet Backend.getCurrentUserUsedJokeTypes()
          Returns a JokeTypeSet containing the current user's used JokeTypes.
 JokeTypeSet Generator.getJokeTypes()
          Returns a JokeTypeSet of all JokeTypes accessible to this Generator.
 JokeTypeSet OptionsJokeGeneration.getUsedJokeTypes(JokeTypeSet master)
          This method returns a JokeTypeSet containing all the JokeTypes that are used as indicated by this profile.
static JokeTypeSet JokeTypeSet.load(URL url)
           
(package private) static JokeTypeSet Generator.peekAtJokeTypes()
           
private static JokeTypeSet Generator.readJokeTypes(String filename)
          Reads the joke type definitions from the given file and returns the resulting JokeTypeSet.
static JokeTypeSet JokeTypeSet.readXML(Element doc)
           
 

Methods in standup.joke with parameters of type JokeTypeSet
 void JokeTypeSet.add(JokeTypeSet js)
           
 void ProfileJokeGeneration.addUserConstraints(JokeConstraints jcs, JokeTypeSet allJokeTypes, LexicalComponents lxc)
          Constructs the various constraints found in this profile relating to joke generation, and adds them to the given JokeConstraints.
 JokeTypeSet OptionsJokeGeneration.getUsedJokeTypes(JokeTypeSet master)
          This method returns a JokeTypeSet containing all the JokeTypes that are used as indicated by this profile.
 

Constructors in standup.joke with parameters of type JokeTypeSet
JokeConstraintTypes(JokeTypeSet _t)
          Constructor must provide the JokeType.
OptionsGUIJokeGeneration(Dimension size, JokeTypeSet m, String[] asl, boolean sjco)