its.util
Interface PropertyParser
- All Known Implementing Classes:
- IntProperty, StringProperty, StructDecoder, TableRouter
- public interface PropertyParser
This class provides the means to extend its.util.Properties3
with application-specific knowledge of the format of individual
properties. A subclass of PropertyParser should implement the
parse method in order to verify the correctness of its input
and to build data structures representing the contents of the
input. The subclass can then provide other methods to work with
the resulting data structures.
The parse method is called by the Properties3 constructor, after
it has been passed a Hashtable containing references to the
application's PropertyParser objects.
|
Method Summary |
void |
parse(java.lang.String text,
java.util.Hashtable delimit)
|
java.lang.String |
toString()
|
parse
public void parse(java.lang.String text,
java.util.Hashtable delimit)
throws PropertyParserException
- Throws:
PropertyParserException
toString
public java.lang.String toString()