BEA Systems, Inc.

WebLogic Server 6.1 API Reference

weblogic.apache.xalan.processor
Class XSLTElementProcessor

java.lang.Object
  |
  +--weblogic.apache.xalan.processor.XSLTElementProcessor
Direct Known Subclasses:
ProcessorCharacters, ProcessorStylesheetDoc, ProcessorTemplateElem

public class XSLTElementProcessor
extends java.lang.Object

This class acts as the superclass for all stylesheet element processors, and deals with things that are common to all elements.

This class is based on an implementation from the Apache XML Project. In future releases the XML parser, XSLT processor, and associated classes will likely be updated to be based on a later version of the Apache implementations. Since Apache does not guarantee backwards compatibility between versions of their software, we cannot guarantee backwards compatibility of any of the classes contained in the weblogic.apache package or sub-packages.

See Also:
XSLT DTD

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.
 org.xml.sax.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, org.xml.sax.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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

resolveEntity

public org.xml.sax.InputSource resolveEntity(StylesheetHandler handler,
                                             java.lang.String publicId,
                                             java.lang.String systemId)
                                      throws org.xml.sax.SAXException
Resolve an external entity.

Parameters:
handler - non-null reference to current StylesheetHandler that is constructing the Templates.
publicId - The public identifer, or null if none is available.
systemId - The system identifier provided in the XML document.
Returns:
The new input source, or null to require the default behaviour.

notationDecl

public void notationDecl(StylesheetHandler handler,
                         java.lang.String name,
                         java.lang.String publicId,
                         java.lang.String systemId)
Receive notification of a notation declaration.

Parameters:
handler - non-null reference to current StylesheetHandler that is constructing the Templates.
name - The notation name.
publicId - The notation public identifier, or null if not available.
systemId - The notation system identifier.
See Also:
DTDHandler.notationDecl(java.lang.String, java.lang.String, java.lang.String)

unparsedEntityDecl

public 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.

Parameters:
handler - non-null reference to current StylesheetHandler that is constructing the Templates.
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.
See Also:
DTDHandler.unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)

startNonText

public void startNonText(StylesheetHandler handler)
                  throws org.xml.sax.SAXException
Receive notification of the start of the non-text event. This is sent to the current processor when any non-text event occurs.

Parameters:
handler - non-null reference to current StylesheetHandler that is constructing the Templates.

startElement

public void startElement(StylesheetHandler handler,
                         java.lang.String uri,
                         java.lang.String localName,
                         java.lang.String rawName,
                         org.xml.sax.Attributes attributes)
                  throws org.xml.sax.SAXException
Receive notification of the start of an element.

Parameters:
name - The element type name.
handler - non-null reference to current StylesheetHandler that is constructing the Templates.
uri - The Namespace URI, or an empty string.
localName - The local name (without prefix), or empty string if not namespace processing.
rawName - The qualified name (with prefix).
attributes - The specified or defaulted attributes.

endElement

public void endElement(StylesheetHandler handler,
                       java.lang.String uri,
                       java.lang.String localName,
                       java.lang.String rawName)
                throws org.xml.sax.SAXException
Receive notification of the end of an element.

Parameters:
name - The element type name.
attributes - The specified or defaulted attributes.
handler - non-null reference to current StylesheetHandler that is constructing the Templates.
uri - The Namespace URI, or an empty string.
localName - The local name (without prefix), or empty string if not namespace processing.
rawName - The qualified name (with prefix).

characters

public void characters(StylesheetHandler handler,
                       char[] ch,
                       int start,
                       int length)
                throws org.xml.sax.SAXException
Receive notification of character data inside an element.

Parameters:
handler - non-null reference to current StylesheetHandler that is constructing the Templates.
ch - The characters.
start - The start position in the character array.
length - The number of characters to use from the character array.

ignorableWhitespace

public void ignorableWhitespace(StylesheetHandler handler,
                                char[] ch,
                                int start,
                                int length)
                         throws org.xml.sax.SAXException
Receive notification of ignorable whitespace in element content.

Parameters:
handler - non-null reference to current StylesheetHandler that is constructing the Templates.
ch - The whitespace characters.
start - The start position in the character array.
length - The number of characters to use from the character array.

processingInstruction

public void processingInstruction(StylesheetHandler handler,
                                  java.lang.String target,
                                  java.lang.String data)
                           throws org.xml.sax.SAXException
Receive notification of a processing instruction.

Parameters:
handler - non-null reference to current StylesheetHandler that is constructing the Templates.
target - The processing instruction target.
data - The processing instruction data, or null if none is supplied.

skippedEntity

public void skippedEntity(StylesheetHandler handler,
                          java.lang.String name)
                   throws org.xml.sax.SAXException
Receive notification of a skipped entity.

Parameters:
handler - non-null reference to current StylesheetHandler that is constructing the Templates.
name - The name of the skipped entity.

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs61

WebLogic classes and methods that do not appear in this reference are not public and are not supported.