Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
gnu.xml.ParsedXMLHandlerByte
public class ParsedXMLHandlerByte
extends java.lang.Object
Method Summary | |
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
void |
|
static void |
|
public void emitBeginAttribute(byte[] name, int start, int length)
Process an attribute, with the given attribute name. The attribute value is given using emitCharacters. The value is terminated by either another emitBeginAttribute or an emitEndAttributes.
public void emitBeginElement(byte[] name, int start, int length)
Process a start tag, with the given element name.
public void emitCDATA(byte[] text, int start, int length)
Process a CDATA section. The data (starting at start for length bytes). Does not include the delimiters (i.e. "<![CDATA[" and "]]>" are excluded).
public void emitCharacterReference(int value, byte[] name, int start, int length)
Process a character entity reference. The string encoding of the character (e.g. "xFF" or "255") is given, as well as the character value.
public void emitCharacters(byte[] text, int start, int length)
Process raw text.
public void emitComment(byte[] data, int start, int length)
Process a comment. The data (starting at start for length bytes). Does not include the delimiters (i.e. "<!--" and "-->" are excluded).
public void emitDoctypeDecl(byte[] buffer, int target, int tlength, int data, int dlength)
Process a DOCTYPE declaration.
public void emitEndAttributes()
Process the end of a start tag. There are no more attributes.
public void emitEndElement(byte[] name, int start, int length)
Process an end tag. An abbrevated tag (such as '
') has a name==null.
public void emitEntityReference(byte[] name, int start, int length)
Process an entity reference. The entity name is given.
public void emitProcessingInstruction(byte[] buffer, int target, int tlength, int data, int dlength)
Process a processing incluction.