Uses of Class
standup.lexicon.CustomLexicon

Packages that use CustomLexicon
standup.lexicon This package provides classes and interfaces that handle access and manipulation of the STANDUP lexicon. 
 

Uses of CustomLexicon in standup.lexicon
 

Subclasses of CustomLexicon in standup.lexicon
 class Topic
          A Topic represents a collection of Lexemes that are related in some sense, e.g.
 

Fields in standup.lexicon with type parameters of type CustomLexicon
private  Hashtable<String,CustomLexicon> ProfileLexicon.blacklists
           
private  Hashtable<String,CustomLexicon> ProfileLexicon.customlexicons
           
 

Methods in standup.lexicon that return CustomLexicon
 CustomLexicon CustomLexicon.duplicate()
          Returns a duplicate of this CustomLexicon.
 CustomLexicon ProfileLexicon.getBlacklist(String label)
          Returns the blacklist CustomLexicon with the given label.
 CustomLexicon ProfileLexicon.getCustomLexicon(String label)
          Returns the CustomLexicon with the given label.
 

Methods in standup.lexicon with parameters of type CustomLexicon
 void ProfileLexicon.addBlacklist(CustomLexicon blacklist)
          Adds the given blacklist to this profile, and saves it to a file with the default name of <label>.blacklist (where label is the given blacklist's label) in the directory returned by ProfileManager.getLexiconDirectory(String).
 void ProfileLexicon.addBlacklist(CustomLexicon blacklist, String filename)
          Adds the given blacklist to this profile, and saves it to a file with the given filename in the directory returned by ProfileManager.getLexiconDirectory(String).
 void ProfileLexicon.addCustomLexicon(CustomLexicon customLexicon)
          Adds the given custom lexicon to this profile, and saves it to a file with the default name of <label>.lexicon (where label is the given custom lexicon's label) in the directory returned by ProfileManager.getLexiconDirectory(String).
 void ProfileLexicon.addCustomLexicon(CustomLexicon customLexicon, String filename)
          Adds the given custom lexicon to this profile, and saves it to a file with the given filename in the directory returned by ProfileManager.getLexiconDirectory(String).
 void ProfileLexicon.removeBlacklist(CustomLexicon blacklist, boolean deleteFileAsWell)
          Removes the given blacklist from this profile.
 void ProfileLexicon.removeCustomLexicon(CustomLexicon customLexicon, boolean deleteFileAsWell)
          Removes the given custom lexicon from this profile.