|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface MIContentHandler
MI XML parser content handler.
| Method Summary | |
|---|---|
void |
attribute(char[] name,
int startName,
int lengthName,
char[] value,
int startValue,
int lengthValue)
Called to handle single attribute. |
void |
characters(char[] ch,
int start,
int length)
Called to handle characters. |
void |
endAttributes()
Called to handle end of attributes for the element. |
void |
endDocument()
Called on end of a document. |
void |
endElement(char[] localName,
int start,
int length)
Called to handle end of the element. |
boolean |
startAttribute(char[] ch,
int start,
int length)
This is called to indicate the start of the attribute represented by ch. |
void |
startDocument()
Called on start of a document. |
void |
startElement(char[] localName,
int start,
int length)
Called to handle start of the element. |
| Method Detail |
|---|
void startDocument()
void endDocument()
void characters(char[] ch,
int start,
int length)
ch - character array.start - start offset of first character.length - length of the data.
boolean startAttribute(char[] ch,
int start,
int length)
ch.
ch - character arraystart - start offset of first character.length - length of the data.
attribute in parts else it will return false
void startElement(char[] localName,
int start,
int length)
localName - element name array.start - start offset of element name.length - length of element name.
void endElement(char[] localName,
int start,
int length)
localName - element name array.start - start offset of element name.length - length of element name.
void attribute(char[] name,
int startName,
int lengthName,
char[] value,
int startValue,
int lengthValue)
name - attribute name array.startName - offset of attribute name.lengthName - length of attribute name.value - value array.startValue - offset of value.lengthValue - length of value.void endAttributes()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||