|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Attributes | |
org.apache.xalan.processor | Parses an XSLT stylesheet document (which may include and import other stylesheet documents) and produces a StylesheetRoot (a TRaX Templates object). |
org.apache.xalan.serialize | Processes SAX events into streams. |
org.apache.xalan.stree | Implementation of the Xalan Source Tree, which is a DOM implementation that is optimized for XSLT processing and the needs of Xalan. |
org.apache.xalan.trace | Implementation of Xalan Trace events, for use by a debugger. |
org.apache.xalan.transformer | In charge of run-time transformations and the production of result trees. |
org.apache.xml.utils | Implementation of Xalan utility classes. |
org.xml.sax | SAX 2.0 interfaces. |
org.xml.sax.helpers | SAX 2.0 implementation classes. |
Uses of Attributes in org.apache.xalan.processor |
Methods in org.apache.xalan.processor with parameters of type Attributes | |
void |
XSLTElementProcessor.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 |
ProcessorTemplateElem.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 |
ProcessorLRE.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 |
ProcessorUnknown.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 |
StylesheetPIHandler.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName,
Attributes atts)
The spec notes that "The xml-stylesheet processing instruction is allowed only in the prolog of an XML document.", so, at least for right now, I'm going to go ahead an throw a TransformerException in order to stop the parse. |
void |
StylesheetHandler.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String rawName,
Attributes attributes)
Receive notification of the start of an element. |
Uses of Attributes in org.apache.xalan.serialize |
Methods in org.apache.xalan.serialize with parameters of type Attributes | |
void |
SerializerToXML.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String name,
Attributes atts)
Receive notification of the beginning of an element. |
void |
SerializerToHTML.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String name,
Attributes atts)
Receive notification of the beginning of an element. |
void |
SerializerToText.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String name,
Attributes atts)
Receive notification of the beginning of an element. |
Uses of Attributes in org.apache.xalan.stree |
Classes in org.apache.xalan.stree that implement Attributes | |
class |
ElementImpl
**For internal use only** This class represents an element in an HTML or XML document. |
class |
ElementImplWithNS
**For internal use only** This class represents an element in an HTML or XML document associated with a given namespace. |
Methods in org.apache.xalan.stree with parameters of type Attributes | |
void |
StreeDOMBuilder.startElement(java.lang.String ns,
java.lang.String localName,
java.lang.String name,
Attributes atts)
Receive notification of the beginning of an element. |
void |
ElementImpl.setAttributes(Attributes atts)
Set a list of attributes of this node. |
void |
SourceTreeHandler.startElement(java.lang.String ns,
java.lang.String localName,
java.lang.String name,
Attributes atts)
Implement the startElement event. |
Uses of Attributes in org.apache.xalan.trace |
Fields in org.apache.xalan.trace declared as Attributes | |
Attributes |
GenerateEvent.m_atts
The current attribute list. |
Constructors in org.apache.xalan.trace with parameters of type Attributes | |
GenerateEvent.GenerateEvent(TransformerImpl processor,
int eventType,
java.lang.String name,
Attributes atts)
Constructor for startElement, endElement events. |
Uses of Attributes in org.apache.xalan.transformer |
Methods in org.apache.xalan.transformer with parameters of type Attributes | |
void |
TransformerIdentityImpl.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
Attributes attributes)
Receive notification of the start of an element. |
void |
ResultTreeHandler.startElement(java.lang.String ns,
java.lang.String localName,
java.lang.String name,
Attributes atts)
Bottleneck the startElement event. |
Uses of Attributes in org.apache.xml.utils |
Classes in org.apache.xml.utils that implement Attributes | |
class |
AttList
**For internal use only** Wraps a DOM attribute list in a SAX Attributes. |
class |
MutableAttrListImpl
**For advanced use only** Mutable version of AttributesImpl. |
Methods in org.apache.xml.utils with parameters of type Attributes | |
void |
DOMBuilder.startElement(java.lang.String ns,
java.lang.String localName,
java.lang.String name,
Attributes atts)
Receive notification of the beginning of an element. |
void |
MutableAttrListImpl.addAttributes(Attributes atts)
Add the contents of the attribute list to this list. |
Constructors in org.apache.xml.utils with parameters of type Attributes | |
MutableAttrListImpl.MutableAttrListImpl(Attributes atts)
Copy an existing Attributes object. |
Uses of Attributes in org.xml.sax |
Methods in org.xml.sax with parameters of type Attributes | |
void |
ContentHandler.startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String qName,
Attributes atts)
Receive notification of the beginning of an element. |
Uses of Attributes in org.xml.sax.helpers |
Classes in org.xml.sax.helpers that implement Attributes | |
class |
AttributesImpl
Default implementation of the Attributes interface. |
Methods in org.xml.sax.helpers with parameters of type Attributes | |
void |
DefaultHandler.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
Attributes attributes)
Receive notification of the start of an element. |
void |
XMLFilterImpl.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
Attributes atts)
Filter a start element event. |
void |
AttributesImpl.setAttributes(Attributes atts)
Copy an entire Attributes object. |
void |
XMLReaderAdapter.startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
Attributes atts)
Adapt a SAX2 start element event. |
Constructors in org.xml.sax.helpers with parameters of type Attributes | |
AttributesImpl.AttributesImpl(Attributes atts)
Copy an existing Attributes object. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |