| org.cougaar.tools.csmart.util.parser.Parser
All known Subclasses: org.cougaar.tools.csmart.util.parser.GenericParser,
Parser | public interface Parser (Code) | | Parser
An interface to define a Properties file parser.
|
Method Summary | |
void | load(String filename) load
Loads in a file to be parsed. | void | parse() parse
Actual parse method that parses the file. | void | setCommentChar(String chr) setCommentChar
Sets the character that represents a comment
in the file. | void | setSeparatorChar(String chr) setSeparatorChar
Sets the character that is used to separate fields
in the file. |
setCommentChar | void setCommentChar(String chr)(Code) | | setCommentChar
Sets the character that represents a comment
in the file.
Parameters: chr - Comment start character. |
setSeparatorChar | void setSeparatorChar(String chr)(Code) | | setSeparatorChar
Sets the character that is used to separate fields
in the file.
Parameters: chr - Separator character. |
|
|