Uses of Class
org.igfay.jfig.JFigException

Packages that use JFigException
org.igfay.jfig   
 

Uses of JFigException in org.igfay.jfig
 

Methods in org.igfay.jfig that throw JFigException
protected  boolean XMLJFigParser.processConfig()
          Process XML Configuration file
protected  void XMLJFigParser.processIncludes(org.w3c.dom.Element element)
           
protected  org.w3c.dom.Element XMLJFigParser.parse()
          Parse the config file into an xml document
protected abstract  boolean JFigParser.processConfig()
          processConfig
protected  void JFigParser.resolveSymbolicValues()
          Resolve symbolic values in the configuration.
protected static java.util.regex.Pattern JFigParser.getRegexSubstitution()
           
protected static java.util.regex.Pattern JFigParser.getRegexGlobalSubstitution()
           
 java.lang.String JFigLocatorIF.getConfigLocation()
           
 void JFigLocatorIF.setConfigLocation(java.lang.String value)
          Set the config location; must be FILE or CLASSPATH.
 java.io.InputStream JFigLocatorIF.getInputStream()
           
 java.lang.String JFigLocator.getConfigLocation()
          Return the config location; file or classpath If user specified LOCATION_PROPERTY on the command line, use that.
 void JFigLocator.setConfigLocation(java.lang.String value)
           
 java.io.InputStream JFigLocator.getInputStream()
          Return the config file as an InputStream
protected  java.io.InputStream JFigLocator.getInputStreamForFile(java.io.InputStream inputStream)
          Find the input stream in the file system.
protected  java.io.InputStream JFigLocator.getInputStreamForClasspath()
          Find the input stream in the classpath
 void JFigIF.reprocessConfiguration()
          reprocess the configuration creating a new config dictionary
 void JFigIF.reprocessConfiguration(JFigLocator locator)
          reprocess the configuration creating a new config dictionary
 java.lang.String[] JFigIF.getArrayValue(java.lang.String section, java.lang.String key)
          convenience method for getting values as array The value is tokenized depending on the first token found in the following order: comma, semicolon, colon, space
 float JFigIF.getFloatValue(java.lang.String section, java.lang.String key, java.lang.String notFoundValue)
          getFloatValue() convenience method for getting values as float
 int JFigIF.getIntegerValue(java.lang.String section, java.lang.String key)
          convenience method for getting values as int
 java.lang.String JFigIF.getValue(java.lang.String section, java.lang.String key)
          Call configParser to get the value for a key in a given section.
 java.lang.String JFigDictionary.getValue(java.lang.String section, java.lang.String key)
          Return the value for this section and key.
 java.lang.String JFigConverter.convert(java.io.File file)
           
 java.lang.String JFigConverter.convert(java.io.File file, java.io.File outputFile)
           
 java.lang.String JFigConverter.convert(java.io.InputStream inputStream)
           
 java.lang.String JFigConverter.convert(java.lang.String value)
           
static JFigIF JFig.getInstance(int dummy)
          Deprecated. - Use initialize
static JFigIF JFig.getInstance(int dummy, JFigLocatorIF locator)
          Deprecated. - Use initialize
protected  void JFig.processConfig()
          Call parser to process required config
 void JFig.reprocessConfiguration()
          Reprocess the configuration creating a new config dictionary
 void JFig.reprocessConfiguration(JFigLocator locator)
          Reprocess the configuration with the specified JFigLocator, creating a new config dictionary
static JFigIF JFig.initialize()
          Initialize configuration
static JFigIF JFig.initialize(JFigLocator locator)
          Initialize configuration.
 java.lang.String[] JFig.getArrayValue(java.lang.String section, java.lang.String key)
          Convenience method for getting values as array.
 float JFig.getFloatValue(java.lang.String section, java.lang.String key, java.lang.String notFoundValue)
          Convenience method for getting values as float
 int JFig.getIntegerValue(java.lang.String section, java.lang.String key)
          Convenience method for getting values as int
 java.lang.String JFig.getValue(java.lang.String section, java.lang.String key)
          Call configParser to get the value for a key in a given section.
protected  boolean IniJFigParser.processConfig()