edu.cmu.sphinx.tools.gui.writer
Interface GUIWriter

All Known Implementing Classes:
XMLConfigWriter

public interface GUIWriter

This class is the general type of all type of GUI Writers. All types of writers should be a subclass of this type

Author:
Ariani

Method Summary
 java.lang.String getOutput(ConfigProperties configProp)
          this method will return the configuration values as text
 boolean writeOutput(ConfigProperties configProp, java.io.File fFile)
          this method will write the configuration values to the output
 

Method Detail

writeOutput

boolean writeOutput(ConfigProperties configProp,
                    java.io.File fFile)
                    throws GUIWriterException
this method will write the configuration values to the output

Parameters:
configProp - ConfigProperties that keeps the values
fFile - Output file
Throws:
GUIWriterException - when there is error in the writing process
GUIWriterException

getOutput

java.lang.String getOutput(ConfigProperties configProp)
                           throws GUIWriterException
this method will return the configuration values as text

Parameters:
configProp - ConfigProperties that keeps the values
Returns:
String configuration values as text
Throws:
GUIWriterException - when there is error in the writing process
GUIWriterException