Serialized Form
Package javax.xml.parsers |
exception
java.lang.Exception exception
- The root cause of this
FactoryConfigurationError
.
Package org.apache.xalan.client |
m_codeBase
java.net.URL m_codeBase
- Save this for use on the worker thread; may not be necessary.
m_documentBase
java.net.URL m_documentBase
m_documentURL
java.lang.String m_documentURL
m_documentURLOfCached
java.lang.String m_documentURLOfCached
m_processor
Processor m_processor
- The stylesheet processor
m_processorName
java.lang.String m_processorName
m_reader
XMLReader m_reader
m_styleTree
Templates m_styleTree
m_styleURL
java.lang.String m_styleURL
m_styleURLOfCached
java.lang.String m_styleURLOfCached
m_templatesBuilder
TemplatesBuilder m_templatesBuilder
PARAM_documentURL
java.lang.String PARAM_documentURL
PARAM_parser
java.lang.String PARAM_parser
PARAM_styleURL
java.lang.String PARAM_styleURL
whichParser
java.lang.String whichParser
Package org.apache.xalan.processor |
readObject
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
- During deserialization, reinstantiate the transient thread-table
m_interpretArray
java.lang.Object[] m_interpretArray
Package org.apache.xalan.templates |
m_name
java.lang.String m_name
- The name of the attribute.
m_parts
java.util.Vector m_parts
- If the AVT is complex, hold a Vector of AVTParts.
m_rawName
java.lang.String m_rawName
- The name of the attribute.
m_simpleString
java.lang.String m_simpleString
- If the AVT is not complex, just hold the simple string.
m_uri
java.lang.String m_uri
- The name of the attribute.
m_val
java.lang.String m_val
- Simple string value;
m_xpath
XPath m_xpath
- Simple string value;
m_isDefaultTemplate
boolean m_isDefaultTemplate
- Tells if this belongs to a default template,
in which case it will act different with
regard to processing modes.
- See Also:
- built-in-rule in XSLT Specification
m_mode
QName m_mode
- mode %qname; #IMPLIED
m_name_avt
AVT m_name_avt
- The local name which should be used.
m_namespace_avt
AVT m_namespace_avt
- The namespace which should be used.
m_qname
QName m_qname
- The name attribute specifies the name of the attribute set.
m_template
ElemTemplateElement m_template
- The template which is named by QName.
m_templateName
QName m_templateName
- An xsl:call-template element invokes a template by name;
it has a required name attribute that identifies the template to be invoked.
m_selectExpression
XPath m_selectExpression
- The required select attribute contains an expression.
m_name_avt
AVT m_name_avt
- The name attribute is interpreted as an attribute value template.
It is an error if the string that results from instantiating the
attribute value template is not a QName.
m_namespace_avt
AVT m_namespace_avt
- If the namespace attribute is present, then it also is interpreted
as an attribute value template. The string that results from
instantiating the attribute value template should be a URI reference.
It is not an error if the string is not a syntactically legal URI reference.
m_prefix
java.lang.String m_prefix
- Cached prefix value... the use of which is dubious.
m_decl
ElemExtensionDecl m_decl
m_extns
java.lang.String m_extns
m_lang
java.lang.String m_lang
m_scriptSrc
java.lang.String m_scriptSrc
m_srcURL
java.lang.String m_srcURL
m_elements
StringVector m_elements
m_functions
StringVector m_functions
m_prefix
java.lang.String m_prefix
m_lang
java.lang.String m_lang
m_src
java.lang.String m_src
m_selectExpression
XPath m_selectExpression
- The "select" expression.
m_sortElems
java.util.Vector m_sortElems
m_test
XPath m_test
- The xsl:if element must have a test attribute, which specifies an expression.
m_avts
java.util.Vector m_avts
- The created element node will have the attribute nodes
that were present on the element node in the stylesheet tree,
other than attributes with names in the XSLT namespace.
m_excludeResultPrefixes
StringVector m_excludeResultPrefixes
- The "exclude-result-prefixes" property.
m_ExtensionElementURIs
StringVector m_ExtensionElementURIs
- The "extension-element-prefixes" property, actually contains URIs.
m_localName
java.lang.String m_localName
- The raw name of the element to be created.
m_namespace
java.lang.String m_namespace
- The namespace of the element to be created.
m_rawName
java.lang.String m_rawName
- The raw name of the element to be created.
m_version
java.lang.String m_version
- The XSLT version as specified by this element.
m_xslAttr
java.util.Vector m_xslAttr
m_terminate
boolean m_terminate
- If the terminate attribute has the value yes, then the
XSLT transformer should terminate processing after sending
the message. The default value is no.
m_countMatchPattern
XPath m_countMatchPattern
- Only nodes are counted that match this pattern.
m_format_avt
AVT m_format_avt
- The "format" attribute is used to control conversion of a list of
numbers into a string.
- See Also:
- convert in XSLT Specification
m_fromMatchPattern
XPath m_fromMatchPattern
- Specifies where to count from.
For level="single" or level="multiple":
Only ancestors that are searched are
those that are descendants of the nearest ancestor that matches
the from pattern.
For level="any:
Only nodes after the first node before the
current node that match the from pattern are considered.
m_groupingSeparator_avt
AVT m_groupingSeparator_avt
- The grouping-separator attribute gives the separator
used as a grouping (e.g. thousands) separator in decimal
numbering sequences.
m_groupingSize_avt
AVT m_groupingSize_avt
- The optional grouping-size specifies the size (normally 3) of the grouping.
m_lang_avt
AVT m_lang_avt
- When numbering with an alphabetic sequence, the lang attribute
specifies which language's alphabet is to be used.
m_lettervalue_avt
AVT m_lettervalue_avt
- The letter-value attribute disambiguates between numbering
sequences that use letters.
m_level
int m_level
- When level="single", it goes up to the first node in the ancestor-or-self axis
that matches the count pattern, and constructs a list of length one containing
one plus the number of preceding siblings of that ancestor that match the count
pattern. If there is no such ancestor, it constructs an empty list. If the from
attribute is specified, then the only ancestors that are searched are those
that are descendants of the nearest ancestor that matches the from pattern.
Preceding siblings has the same meaning here as with the preceding-sibling axis.
When level="multiple", it constructs a list of all ancestors of the current node
in document order followed by the element itself; it then selects from the list
those nodes that match the count pattern; it then maps each node in the list to
one plus the number of preceding siblings of that node that match the count pattern.
If the from attribute is specified, then the only ancestors that are searched are
those that are descendants of the nearest ancestor that matches the from pattern.
Preceding siblings has the same meaning here as with the preceding-sibling axis.
When level="any", it constructs a list of length one containing the number of
nodes that match the count pattern and belong to the set containing the current
node and all nodes at any level of the document that are before the current node
in document order, excluding any namespace and attribute nodes (in other words
the union of the members of the preceding and ancestor-or-self axes). If the
from attribute is specified, then only nodes after the first node before the
current node that match the from pattern are considered.
m_valueExpr
XPath m_valueExpr
- The value attribute contains an expression. The expression is evaluated
and the resulting object is converted to a number as if by a call to the
number function.
m_name_atv
AVT m_name_atv
- The xsl:processing-instruction element has a required name
attribute that specifies the name of the processing instruction node.
The value of the name attribute is interpreted as an
attribute value template.
m_caseorder_avt
AVT m_caseorder_avt
- case-order has the value upper-first or lower-first.
The default value is language dependent.
m_dataType_avt
AVT m_dataType_avt
- data-type specifies the data type of the
strings to be sorted.
m_lang_avt
AVT m_lang_avt
- lang specifies the language of the sort keys.
m_order_avt
AVT m_order_avt
- order specifies whether the strings should be sorted in ascending
or descending order.
m_selectExpression
XPath m_selectExpression
- xsl:sort has a select attribute whose value is an expression.
m_matchPattern
XPath m_matchPattern
- The match attribute is a Pattern that identifies the source
node or nodes to which the rule applies.
m_mode
QName m_mode
- Modes allow an element to be processed multiple times,
each time producing a different result.
m_name
QName m_name
- An xsl:template element with a name attribute specifies a named template.
m_priority
double m_priority
- The priority of a template rule is specified by the priority
attribute on the template rule.
m_publicId
java.lang.String m_publicId
m_stylesheet
Stylesheet m_stylesheet
- The owning stylesheet.
(Should this only be put on the template element, to
conserve space?)
m_systemId
java.lang.String m_systemId
m_columnNumber
int m_columnNumber
m_declaredPrefixes
java.util.Vector m_declaredPrefixes
- The list of namespace declarations for this element only.
m_defaultSpace
boolean m_defaultSpace
- Tell if this element has the default space handling
turned off or on according to the xml:space attribute.
m_DOMBackPointer
Node m_DOMBackPointer
m_firstChild
ElemTemplateElement m_firstChild
- First child.
m_lineNumber
int m_lineNumber
m_nextSibling
ElemTemplateElement m_nextSibling
- Next sibling.
m_parentNode
ElemTemplateElement m_parentNode
- Parent node.
m_prefixTable
java.util.Vector m_prefixTable
- The table of namespace declarations for this element
and all parent elements, screened for excluded prefixes.
m_disableOutputEscaping
boolean m_disableOutputEscaping
- Tells if this element should disable escaping.
m_ch
char[] m_ch
- The character array.
m_disableOutputEscaping
boolean m_disableOutputEscaping
- Tells if this element should disable escaping.
m_preserveSpace
boolean m_preserveSpace
- Tell if space should be preserved.
m_attributeSetsNames
QName[] m_attributeSetsNames
- The value of the "use-attribute-sets" attribute.
m_disableOutputEscaping
boolean m_disableOutputEscaping
- Tells if this element should disable escaping.
m_selectExpression
XPath m_selectExpression
- The select expression to be executed.
m_isTopLevel
boolean m_isTopLevel
- Tells if this is a top-level variable or param, or not.
m_qname
QName m_qname
- The value of the "name" attribute.
m_selectPattern
XPath m_selectPattern
- The value of the "select" attribute.
m_test
XPath m_test
- Each xsl:when element has a single attribute, test,
which specifies an expression.
m_qname
QName m_qname
- The required name attribute specifies the name of the
parameter (the variable the value of whose binding is
to be replaced). The value of the name attribute is a QName,
which is expanded as described in [2.4 Qualified Names].
m_selectPattern
XPath m_selectPattern
- The "select" attribute, which specifies the value of the
argument, if element content is not specified.
m_buildState
int m_buildState
m_matchPattern
XPath m_matchPattern
- The "match" attribute.
m_name
QName m_name
- The "name" property.
m_use
XPath m_use
- The "use" attribute.
readObject
private void readObject(java.io.ObjectInputStream stream)
throws java.io.IOException,
SAXException
- Read the stylesheet from a serialization stream.
writeObject
private void writeObject(java.io.ObjectOutputStream stream)
throws java.io.IOException
m_attributeSets
java.util.Vector m_attributeSets
- The "xsl:attribute-set" property.
m_DecimalFormatDeclarations
java.util.Stack m_DecimalFormatDeclarations
- Table of tables of element decimal-format.
- See Also:
ElemDecimalFormat.
m_ExcludeResultPrefixs
StringVector m_ExcludeResultPrefixs
- The "exclude-result-prefixes" property.
m_ExtensionElementURIs
StringVector m_ExtensionElementURIs
- The "extension-element-prefixes" property, actually contains URIs.
m_href
java.lang.String m_href
- The base URL of the XSL document.
m_Id
java.lang.String m_Id
- The "id" property.
m_imports
java.util.Vector m_imports
- The "xsl:import" list.
m_includes
java.util.Vector m_includes
- The "xsl:include" properties.
m_keyDeclarations
java.util.Vector m_keyDeclarations
- The "xsl:key" property.
m_NonXslTopLevel
java.util.Hashtable m_NonXslTopLevel
- The "non-xsl-top-level" properties.
m_output
OutputFormatExtended m_output
- The "xsl:output" property.
m_prefix_aliases
java.util.Vector m_prefix_aliases
- The "xsl:namespace-alias" properties.
m_publicId
java.lang.String m_publicId
m_stylesheetParent
Stylesheet m_stylesheetParent
- The parent of the stylesheet. This will be null if this
is the root stylesheet.
m_stylesheetRoot
StylesheetRoot m_stylesheetRoot
- The root of the stylesheet, where all the tables common
to all stylesheets are kept.
m_systemId
java.lang.String m_systemId
m_templates
java.util.Vector m_templates
- The "xsl:template" properties.
m_topLevelParams
java.util.Vector m_topLevelParams
- The "xsl:param" properties.
m_topLevelVariables
java.util.Vector m_topLevelVariables
- The "xsl:variable" properties.
m_Version
java.lang.String m_Version
- The "version" property.
m_whitespacePreservingElements
java.util.Vector m_whitespacePreservingElements
- The "xsl:preserve-space" property,
A lookup table of all space preserving elements.
m_whitespaceStrippingElements
java.util.Vector m_whitespaceStrippingElements
- The "xsl:strip-space" properties,
A lookup table of all space stripping elements.
m_XmlnsXsl
java.lang.String m_XmlnsXsl
- The "xmlns:xsl" property.
m_XmlSpace
boolean m_XmlSpace
- The "xml:space" property.
m_importNumber
int m_importNumber
m_defaultRootRule
ElemTemplate m_defaultRootRule
-
The default template to use for the root if we don't find
anything else. This is initialized in initDefaultRule().
We kind of need this because the defaultRule isn't good
enough because it doesn't supply a document context.
For now, I default the root document element to "HTML".
Don't know if this is really a good idea or not.
I suspect it is not.
m_defaultRule
ElemTemplate m_defaultRule
-
The default template to use if we don't find anything
else. This is initialized in initDefaultRule().
m_defaultTextRule
ElemTemplate m_defaultTextRule
-
The default template to use for text nodes if we don't find
anything else. This is initialized in initDefaultRule().
m_outputFormatComposed
OutputFormat m_outputFormatComposed
- This will be set up with the default values, and then the values
will be set as stylesheets are encountered.
m_outputMethodSet
boolean m_outputMethodSet
DEBUG
boolean DEBUG
m_firstTemplate
ElemTemplateElement m_firstTemplate
- The first template of the template children.
m_namedTemplates
java.util.Hashtable m_namedTemplates
- Keyed on string macro names, and holding values
that are macro elements in the XSL DOM tree.
Initialized in initMacroLookupTable, and used in
findNamedTemplate.
m_patternTable
java.util.Hashtable m_patternTable
- This table is keyed on the target elements
of patterns, and contains linked lists of
the actual patterns that match the target element
to some degree of specifity.
m_stylesheet
Stylesheet m_stylesheet
- The stylesheet owner of the list.
m_wildCardPatterns
org.apache.xalan.templates.TemplateSubPatternAssociation m_wildCardPatterns
m_shouldStripSpace
boolean m_shouldStripSpace
Package org.apache.xalan.transformer |
m_countersMade
int m_countersMade
m_newFound
NodeSet m_newFound
- Place to collect new counters.
Package org.apache.xalan.utils |
m_a
HeapObject[] m_a
m_n
int m_n
m_sentinel
org.apache.xalan.utils.Heap.Sentinel m_sentinel
m_next
NameSpace m_next
m_prefix
java.lang.String m_prefix
m_uri
java.lang.String m_uri
m_blocksize
int m_blocksize
m_firstFree
int m_firstFree
m_map
Node[] m_map
m_mapSize
int m_mapSize
m_hashCode
int m_hashCode
- The cached hashcode, which is calculated at construction time.
m_fragment
java.lang.String m_fragment
- If specified, stores the fragment for this URI; otherwise null
m_host
java.lang.String m_host
- If specified, stores the host for this URI; otherwise null
m_path
java.lang.String m_path
- If specified, stores the path for this URI; otherwise null
m_port
int m_port
- If specified, stores the port for this URI; otherwise -1
m_queryString
java.lang.String m_queryString
- If specified, stores the query string for this URI; otherwise
null.
m_scheme
java.lang.String m_scheme
- Stores the scheme (usually the protocol) for this URI.
m_userinfo
java.lang.String m_userinfo
- If specified, stores the userinfo for this URI; otherwise null
m_exception
java.lang.Exception m_exception
m_cacheNodes
boolean m_cacheNodes
m_mutable
boolean m_mutable
m_next
int m_next
m_currentStackFrameIndex
int m_currentStackFrameIndex
- This is the top of the stack frame from where a search
for a variable or param should take place. It may not
be the real stack top.
m_elemFramePos
IntStack m_elemFramePos
- Hold the position of the start of the current element frame.
m_globalStackFrameIndex
int m_globalStackFrameIndex
m_locator
Locator m_locator
m_mainExp
Expression m_mainExp
m_patternString
java.lang.String m_patternString
m_targetStrings
java.util.Vector m_targetStrings
m_exception
java.lang.Exception m_exception
m_styleNode
java.lang.Object m_styleNode
Package org.apache.xpath.compiler |
m_errorHandler
ErrorHandler m_errorHandler
m_namespaceContext
PrefixResolver m_namespaceContext
- The prefix resolver to map prefixes to namespaces in the OpMap.
m_ops
OpMap m_ops
- The XPath to be processed.
m_queueMark
int m_queueMark
- The position in the token queue is tracked by m_queueMark.
m_token
java.lang.String m_token
- The next token in the pattern.
m_tokenChar
char m_tokenChar
- The first char in m_token, the theory being that this
is an optimization because we won't have to do charAt(0) as
often.
Package org.apache.xpath.functions |
m_argsExpected
java.lang.String m_argsExpected
Package org.apache.xpath.objects |
m_val
boolean m_val
m_val
boolean m_val
m_val
double m_val
m_obj
java.lang.Object m_obj
code
short code
Package org.w3c.dom.range |
code
short code
exception
java.lang.Exception exception
- The embedded exception if tunnelling, or null.
columnNumber
int columnNumber
- The column number, or -1.
- See Also:
SAXParseException.getColumnNumber()
lineNumber
int lineNumber
- The line number, or -1.
- See Also:
SAXParseException.getLineNumber()
publicId
java.lang.String publicId
- The public identifier, or null.
- See Also:
SAXParseException.getPublicId()
systemId
java.lang.String systemId
- The system identifier, or null.
- See Also:
SAXParseException.getSystemId()
Copyright © 2000 Apache XML Project. All Rights Reserved.