|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.xalan.processor.XSLTElementProcessor
This class acts as the superclass for all stylesheet element processors, and deals with things that are common to all elements.
Method Summary | |
void |
characters(StylesheetHandler handler,
char[] ch,
int start,
int length)
Receive notification of character data inside an element. |
void |
endElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName)
Receive notification of the end of an element. |
void |
ignorableWhitespace(StylesheetHandler handler,
char[] ch,
int start,
int length)
Receive notification of ignorable whitespace in element content. |
void |
notationDecl(StylesheetHandler handler,
java.lang.String name,
java.lang.String publicId,
java.lang.String systemId)
Receive notification of a notation declaration. |
void |
processingInstruction(StylesheetHandler handler,
java.lang.String target,
java.lang.String data)
Receive notification of a processing instruction. |
InputSource |
resolveEntity(StylesheetHandler handler,
java.lang.String publicId,
java.lang.String systemId)
Resolve an external entity. |
void |
skippedEntity(StylesheetHandler handler,
java.lang.String name)
Receive notification of a skipped entity. |
void |
startElement(StylesheetHandler handler,
java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
Attributes attributes)
Receive notification of the start of an element. |
void |
startNonText(StylesheetHandler handler)
Receive notification of the start of the non-text event. |
void |
unparsedEntityDecl(StylesheetHandler handler,
java.lang.String name,
java.lang.String publicId,
java.lang.String systemId,
java.lang.String notationName)
Receive notification of an unparsed entity declaration. |
Methods inherited from class java.lang.Object |
equals,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Method Detail |
public InputSource resolveEntity(StylesheetHandler handler, java.lang.String publicId, java.lang.String systemId) throws SAXException
publicId
- The public identifer, or null if none is
available.systemId
- The system identifier provided in the XML
document.EntityResolver.resolveEntity(java.lang.String, java.lang.String)
public void notationDecl(StylesheetHandler handler, java.lang.String name, java.lang.String publicId, java.lang.String systemId)
name
- The notation name.publicId
- The notation public identifier, or null if not
available.systemId
- The notation system identifier.DTDHandler.notationDecl(java.lang.String, java.lang.String, java.lang.String)
public void unparsedEntityDecl(StylesheetHandler handler, java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String notationName)
name
- The entity name.publicId
- The entity public identifier, or null if not
available.systemId
- The entity system identifier.notationName
- The name of the associated notation.DTDHandler.unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
public void startNonText(StylesheetHandler handler) throws SAXException
public void startElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName, Attributes attributes) throws SAXException
name
- The element type name.attributes
- The specified or defaulted attributes.ContentHandler.startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)
public void endElement(StylesheetHandler handler, java.lang.String uri, java.lang.String localName, java.lang.String rawName) throws SAXException
name
- The element type name.attributes
- The specified or defaulted attributes.ContentHandler.endElement(java.lang.String, java.lang.String, java.lang.String)
public void characters(StylesheetHandler handler, char[] ch, int start, int length) throws SAXException
ch
- The characters.start
- The start position in the character array.length
- The number of characters to use from the
character array.ContentHandler.characters(char[], int, int)
public void ignorableWhitespace(StylesheetHandler handler, char[] ch, int start, int length) throws SAXException
ch
- The whitespace characters.start
- The start position in the character array.length
- The number of characters to use from the
character array.ContentHandler.ignorableWhitespace(char[], int, int)
public void processingInstruction(StylesheetHandler handler, java.lang.String target, java.lang.String data) throws SAXException
target
- The processing instruction target.data
- The processing instruction data, or null if
none is supplied.ContentHandler.processingInstruction(java.lang.String, java.lang.String)
public void skippedEntity(StylesheetHandler handler, java.lang.String name) throws SAXException
name
- The name of the skipped entity.ContentHandler.processingInstruction(java.lang.String, java.lang.String)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |