Uses of Class
standup.lexicon.LexiconException

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

Uses of LexiconException in standup.lexicon
 

Methods in standup.lexicon that throw LexiconException
 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 Topic.addSubtopic(Topic t)
          Adds the given Topic to the list of subtopics.
 void ProfileLexicon.addTopic(Topic topic)
          Adds the given topic to this profile, and saves it to a file with the default name of <label>.topic (where label is the given topic's root label) in the directory returned by ProfileManager.getLexiconDirectory(String).
 void ProfileLexicon.addTopic(Topic topic, String filename)
          Adds the given topic to this profile, and saves it to a file with the given filename in the directory returned by ProfileManager.getLexiconDirectory(String).
private static void Topic.doTopicList(Topic t, Element topicListElement)
          Processes a Topic's list of subtopics from its XML Element.
 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.
 void Topic.removeSubtopic(Topic t)
          Removes the given Topic from this Topic's list of subtopics.
 void ProfileLexicon.removeTopic(Topic topic, boolean deleteFileAsWell)
          Removes the given topic from this profile.