| util.ParseModel
ParseModel | public interface ParseModel (Code) | | this interface was created to be used with our simple parser. An
object of this kind would be created and given to the parser.
|
getObject | public Object getObject()(Code) | | this was put to return the collection since we dont know what
kinda object we have in here. You can get and then manipulate
as is.
|
setModelAttribute | public void setModelAttribute(int row, int total, String aname, String value, String ename)(Code) | | this gives the attribute name and value, it also gives the index
of the attribute starting 0, and the total count of attributes
within that
element
|
setModelElement | public void setModelElement(String ename, Attributes attrs)(Code) | | this gives the element name and the attribute list.
|
|
|