Serialized Form

Package org.apache.xalan.templates

Class org.apache.xalan.templates.AVT extends java.lang.Object implements Serializable

serialVersionUID: 5167607155517042691L

Serialized Fields

m_simpleString

 String m_simpleString
If the AVT is not complex, just hold the simple string.

m_parts

 Vector m_parts
If the AVT is complex, hold a Vector of AVTParts.

m_rawName

 String m_rawName
The name of the attribute.

m_name

 String m_name
The name of the attribute.

m_uri

 String m_uri
The namespace URI of the owning attribute.

Class org.apache.xalan.templates.AVTPart extends java.lang.Object implements Serializable

serialVersionUID: -1747749903613916025L

Class org.apache.xalan.templates.AVTPartSimple extends AVTPart implements Serializable

serialVersionUID: -3744957690598727913L

Serialized Fields

m_val

 String m_val
Simple string value;

Class org.apache.xalan.templates.AVTPartXPath extends AVTPart implements Serializable

serialVersionUID: -4460373807550527675L

Serialized Fields

m_xpath

 XPath m_xpath
The XPath object contained in this part.

Class org.apache.xalan.templates.FuncDocument extends Function2Args implements Serializable

serialVersionUID: 2483304325971281424L

Class org.apache.xalan.templates.FuncFormatNumb extends Function3Args implements Serializable

serialVersionUID: -8869935264870858636L

Class org.apache.xalan.templates.FuncKey extends Function2Args implements Serializable

serialVersionUID: 9089293100115347340L

Class org.apache.xalan.templates.Stylesheet extends ElemTemplateElement implements Serializable

serialVersionUID: 2085337282743043776L

Serialized Fields

m_XmlnsXsl

 String m_XmlnsXsl
The "xmlns:xsl" property.

m_ExtensionElementURIs

 StringVector m_ExtensionElementURIs
The "extension-element-prefixes" property, actually contains URIs.

m_ExcludeResultPrefixs

 StringVector m_ExcludeResultPrefixs
The "exclude-result-prefixes" property.

m_Id

 String m_Id
The "id" property.

m_Version

 String m_Version
The "version" property.

m_isCompatibleMode

 boolean m_isCompatibleMode
Whether or not the stylesheet is in "Forward Compatibility Mode"

m_imports

 Vector m_imports
The "xsl:import" list.

m_includes

 Vector m_includes
The "xsl:include" properties.

m_DecimalFormatDeclarations

 Stack m_DecimalFormatDeclarations
Table of tables of element decimal-format.

m_whitespaceStrippingElements

 Vector m_whitespaceStrippingElements
The "xsl:strip-space" properties, A lookup table of all space stripping elements.

m_whitespacePreservingElements

 Vector m_whitespacePreservingElements
The "xsl:preserve-space" property, A lookup table of all space preserving elements.

m_output

 Vector m_output
The "xsl:output" properties. This is a vector of OutputProperties objects.

m_keyDeclarations

 Vector m_keyDeclarations
The "xsl:key" property.

m_attributeSets

 Vector m_attributeSets
The "xsl:attribute-set" property.

m_topLevelVariables

 Vector m_topLevelVariables
The "xsl:variable" and "xsl:param" properties.

m_templates

 Vector m_templates
The "xsl:template" properties.

m_prefix_aliases

 Vector m_prefix_aliases
The "xsl:namespace-alias" properties.

m_NonXslTopLevel

 Hashtable m_NonXslTopLevel
The "non-xsl-top-level" properties.

m_href

 String m_href
The base URL of the XSL document.

m_publicId

 String m_publicId
The doctype-public element.

m_systemId

 String m_systemId
The doctype-system element.

m_stylesheetRoot

 StylesheetRoot m_stylesheetRoot
The root of the stylesheet, where all the tables common to all stylesheets are kept.

m_stylesheetParent

 Stylesheet m_stylesheetParent
The parent of the stylesheet. This will be null if this is the root stylesheet.

Class org.apache.xalan.templates.StylesheetComposed extends Stylesheet implements Serializable

serialVersionUID: -3444072247410233923L

Serialized Fields

m_importNumber

 int m_importNumber
Order in import chain.

m_importCountComposed

 int m_importCountComposed
The precedence of this stylesheet in the global import list. The lowest precedence stylesheet is 0. A higher number has a higher precedence.

m_endImportCountComposed

 int m_endImportCountComposed

Class org.apache.xalan.templates.StylesheetRoot extends StylesheetComposed implements Serializable

serialVersionUID: 3875353123529147855L

Serialized Fields

m_optimizer

 boolean m_optimizer
The flag for the setting of the optimize feature;

m_incremental

 boolean m_incremental
The flag for the setting of the incremental feature;

m_source_location

 boolean m_source_location
The flag for the setting of the source_location feature;

m_isSecureProcessing

 boolean m_isSecureProcessing
State of the secure processing feature.

m_availElems

 Hashtable m_availElems
The schema used when creating this StylesheetRoot

m_globalImportList

 StylesheetComposed[] m_globalImportList
The combined list of imports. The stylesheet with the highest import precedence will be at element 0. The one with the lowest import precedence will be at element length - 1.

m_outputProperties

 OutputProperties m_outputProperties
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
Flag indicating whether an output method has been set by the user.

m_attrSets

 Hashtable m_attrSets
Composed set of all included and imported attribute set properties. Each entry is a vector of ElemAttributeSet objects.

m_decimalFormatSymbols

 Hashtable m_decimalFormatSymbols
Table of DecimalFormatSymbols, keyed by QName.

m_keyDecls

 Vector m_keyDecls
A list of all key declarations visible from this stylesheet and all lesser stylesheets.

m_namespaceAliasComposed

 Hashtable m_namespaceAliasComposed
Composed set of all namespace aliases.

m_templateList

 TemplateList m_templateList
The "xsl:template" properties.

m_variables

 Vector m_variables
Composed set of all variables and params.

m_whiteSpaceInfoList

 TemplateList m_whiteSpaceInfoList
A list of properties that specify how to do space stripping. This uses the same exact mechanism as Templates.

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_defaultRule

 ElemTemplate m_defaultRule
The default template to use if we don't find anything else. This is initialized in initDefaultRule().

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_startRule

 ElemTemplate m_startRule
The start rule to kick off the transformation.

m_selectDefault

 XPath m_selectDefault
Used for default selection.

m_extensionHandlerClass

 String m_extensionHandlerClass

Class org.apache.xalan.templates.TemplateList extends java.lang.Object implements Serializable

serialVersionUID: 5803675288911728791L

Serialized Fields

m_namedTemplates

 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

 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_wildCardPatterns

 org.apache.xalan.templates.TemplateSubPatternAssociation m_wildCardPatterns
Wildcard patterns.

m_textPatterns

 org.apache.xalan.templates.TemplateSubPatternAssociation m_textPatterns
Text Patterns.

m_docPatterns

 org.apache.xalan.templates.TemplateSubPatternAssociation m_docPatterns
Root document Patterns.

m_commentPatterns

 org.apache.xalan.templates.TemplateSubPatternAssociation m_commentPatterns
Comment Patterns.

Class org.apache.xalan.templates.XMLNSDecl extends java.lang.Object implements Serializable

serialVersionUID: 6710237366877605097L

Serialized Fields

m_prefix

 String m_prefix
non-null reference to prefix, using "" for default namespace.

m_uri

 String m_uri
non-null reference to namespace URI.

m_isExcluded

 boolean m_isExcluded
true if this namespace declaration should normally be excluded.

Class org.apache.xalan.templates.XUnresolvedVariable extends XObject implements Serializable

serialVersionUID: -256779804767950188L

Serialized Fields

m_isGlobal

 boolean m_isGlobal
true if this variable or parameter is a global.

Class org.apache.xalan.templates.XUnresolvedVariableSimple extends XObject implements Serializable

serialVersionUID: -1224413807443958985L

Package org.apache.xalan.transformer

Class org.apache.xalan.transformer.KeyIterator extends OneStepIteratorForward implements Serializable

serialVersionUID: -1349109910100249661L

Serialized Fields

m_name

 QName m_name
Key name.

m_keyDeclarations

 Vector m_keyDeclarations
Vector of Key declarations in the stylesheet.

Class org.apache.xalan.transformer.KeyRefIterator extends ChildTestIterator implements Serializable

serialVersionUID: 3837456451659435102L

Serialized Fields

m_keysNodes

 DTMIterator m_keysNodes

m_ref

 XMLString m_ref

m_name

 QName m_name

m_keyDeclarations

 Vector m_keyDeclarations
Vector of Key declarations in the stylesheet.

Package org.apache.xml.utils

Class org.apache.xml.utils.ObjectPool extends java.lang.Object implements Serializable

serialVersionUID: -8519013691660936643L

Serialized Fields

objectType

 Class objectType
Type of objects in this pool.

freeStack

 Vector freeStack
Vector of given objects this points to.

Class org.apache.xml.utils.QName extends java.lang.Object implements Serializable

serialVersionUID: 467434581652829920L

Serialized Fields

_localName

 String _localName
The local name.

_namespaceURI

 String _namespaceURI
The namespace URI.

_prefix

 String _prefix
The namespace prefix.

m_hashCode

 int m_hashCode
The cached hashcode, which is calculated at construction time.

Class org.apache.xml.utils.SerializableLocatorImpl extends java.lang.Object implements Serializable

serialVersionUID: -2660312888446371460L

Serialized Fields

publicId

 String publicId
The public ID.

systemId

 String systemId
The system ID.

lineNumber

 int lineNumber
The line number.

columnNumber

 int columnNumber
The column number.

Class org.apache.xml.utils.StringVector extends java.lang.Object implements Serializable

serialVersionUID: 4995234972032919748L

Serialized Fields

m_blocksize

 int m_blocksize
Size of blocks to allocate

m_map

 String[] m_map
Array of strings this contains

m_firstFree

 int m_firstFree
Number of strings this contains

m_mapSize

 int m_mapSize
Size of the array

Package org.apache.xpath

Class org.apache.xpath.Expression extends java.lang.Object implements Serializable

serialVersionUID: 565665869777906902L

Serialized Fields

m_parent

 ExpressionNode m_parent
The location where this expression was built from. Need for diagnostic messages. May be null.

Package org.apache.xpath.axes

Class org.apache.xpath.axes.AttributeIterator extends ChildTestIterator implements Serializable

serialVersionUID: -8417986700712229686L

Class org.apache.xpath.axes.AxesWalker extends PredicatedNodeTest implements Serializable

serialVersionUID: -2966031951306601247L

Serialized Fields

m_dtm

 DTM m_dtm
The DTM for the root. This can not be used, or must be changed, for the filter walker, or any walker that can have nodes from multiple documents. Never, ever, access this value without going through getDTM(int node).

m_nextWalker

 AxesWalker m_nextWalker
The next walker in the location step chain.

m_prevWalker

 AxesWalker m_prevWalker
The previous walker in the location step chain, or null.

m_axis

 int m_axis
The traversal axis from where the nodes will be filtered.

m_traverser

 DTMAxisTraverser m_traverser
The DTM inner traversal class, that corresponds to the super axis.

Class org.apache.xpath.axes.BasicTestIterator extends LocPathIterator implements Serializable

serialVersionUID: 3505378079378096623L

Class org.apache.xpath.axes.ChildIterator extends LocPathIterator implements Serializable

serialVersionUID: -6935428015142993583L

Class org.apache.xpath.axes.ChildTestIterator extends BasicTestIterator implements Serializable

serialVersionUID: -7936835957960705722L

Class org.apache.xpath.axes.DescendantIterator extends LocPathIterator implements Serializable

serialVersionUID: -1190338607743976938L

Serialized Fields

m_axis

 int m_axis
The axis that we are traversing.

m_extendedTypeID

 int m_extendedTypeID
The extended type ID, not set until setRoot.

Class org.apache.xpath.axes.FilterExprIterator extends BasicTestIterator implements Serializable

serialVersionUID: 2552176105165737614L

Serialized Fields

m_expr

 Expression m_expr
The contained expression. Should be non-null.

m_mustHardReset

 boolean m_mustHardReset

m_canDetachNodeset

 boolean m_canDetachNodeset

Class org.apache.xpath.axes.FilterExprIteratorSimple extends LocPathIterator implements Serializable

serialVersionUID: -6978977187025375579L

Serialized Fields

m_expr

 Expression m_expr
The contained expression. Should be non-null.

m_mustHardReset

 boolean m_mustHardReset

m_canDetachNodeset

 boolean m_canDetachNodeset

Class org.apache.xpath.axes.FilterExprWalker extends AxesWalker implements Serializable

serialVersionUID: 5457182471424488375L

Serialized Fields

m_expr

 Expression m_expr
The contained expression. Should be non-null.

m_mustHardReset

 boolean m_mustHardReset

m_canDetachNodeset

 boolean m_canDetachNodeset

Class org.apache.xpath.axes.IteratorPool extends java.lang.Object implements Serializable

serialVersionUID: -460927331149566998L

Serialized Fields

m_orig

 DTMIterator m_orig
Type of objects in this pool.

m_freeStack

 Vector m_freeStack
Vector of given objects this points to.

Class org.apache.xpath.axes.LocPathIterator extends PredicatedNodeTest implements Serializable

serialVersionUID: -4602476357268405754L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream stream)
            throws java.io.IOException,
                   javax.xml.transform.TransformerException
Read the object from a serialization stream.
Parameters:
stream - Input stream to read from

Serialized Fields

m_allowDetach

 boolean m_allowDetach
Control over whether it is OK for detach to reset the iterator.

m_isTopLevel

 boolean m_isTopLevel
Value determined at compile time, indicates that this is an iterator at the top level of the expression, rather than inside a predicate.

m_prefixResolver

 PrefixResolver m_prefixResolver
Fast access to the current prefix resolver. It isn't really clear that this is needed.

Class org.apache.xpath.axes.MatchPatternIterator extends LocPathIterator implements Serializable

serialVersionUID: -5201153767396296474L

Serialized Fields

m_pattern

 StepPattern m_pattern
This is the select pattern, translated into a match pattern.

m_superAxis

 int m_superAxis
The traversal axis from where the nodes will be filtered.

m_traverser

 DTMAxisTraverser m_traverser
The DTM inner traversal class, that corresponds to the super axis.

Class org.apache.xpath.axes.NodeSequence extends XObject implements Serializable

serialVersionUID: 3866261934726581044L

Serialized Fields

m_last

 int m_last
The index of the last node in the iteration.

m_next

 int m_next
The index of the next node to be fetched. Useful if this is a cached iterator, and is being used as random access NodeList.

m_iter

 DTMIterator m_iter
The functional iterator that fetches nodes.

m_dtmMgr

 DTMManager m_dtmMgr
The DTMManager to use if we're using a NodeVector only. We may well want to do away with this, and store it in the NodeVector.

Class org.apache.xpath.axes.OneStepIterator extends ChildTestIterator implements Serializable

serialVersionUID: 4623710779664998283L

Serialized Fields

m_axis

 int m_axis
The traversal axis from where the nodes will be filtered.

m_iterator

 DTMAxisIterator m_iterator
The DTM inner traversal class, that corresponds to the super axis.

Class org.apache.xpath.axes.OneStepIteratorForward extends ChildTestIterator implements Serializable

serialVersionUID: -1576936606178190566L

Serialized Fields

m_axis

 int m_axis
The traversal axis from where the nodes will be filtered.

Class org.apache.xpath.axes.PredicatedNodeTest extends NodeTest implements Serializable

serialVersionUID: -6193530757296377351L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream stream)
            throws java.io.IOException,
                   javax.xml.transform.TransformerException
Read the object from a serialization stream.
Parameters:
stream - Input stream to read from

Serialized Fields

m_predCount

 int m_predCount

m_lpi

 LocPathIterator m_lpi
The owning location path iterator.

m_predicates

 Expression[] m_predicates
The list of predicate expressions. Is static and does not need to be deep cloned.

Class org.apache.xpath.axes.ReverseAxesWalker extends AxesWalker implements Serializable

serialVersionUID: 2847007647832768941L

Serialized Fields

m_iterator

 DTMAxisIterator m_iterator
The DTM inner traversal class, that corresponds to the super axis.

Class org.apache.xpath.axes.SelfIteratorNoPredicate extends LocPathIterator implements Serializable

serialVersionUID: -4226887905279814201L

Class org.apache.xpath.axes.UnionChildIterator extends ChildTestIterator implements Serializable

serialVersionUID: 3500298482193003495L

Serialized Fields

m_nodeTests

 PredicatedNodeTest[] m_nodeTests
Even though these may hold full LocPathIterators, this array does not have to be cloned, since only the node test and predicate portion are used, and these only need static information. However, also note that index predicates can not be used!

Class org.apache.xpath.axes.UnionPathIterator extends LocPathIterator implements Serializable

serialVersionUID: -3910351546843826781L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream stream)
            throws java.io.IOException,
                   javax.xml.transform.TransformerException
Read the object from a serialization stream.
Parameters:
stream - Input stream to read from

Serialized Fields

m_exprs

 LocPathIterator[] m_exprs
The location path iterators, one for each location path contained in the union expression.

m_iterators

 DTMIterator[] m_iterators
The location path iterators, one for each location path contained in the union expression.

Class org.apache.xpath.axes.WalkingIterator extends LocPathIterator implements Serializable

serialVersionUID: 9110225941815665906L

Serialized Fields

m_lastUsedWalker

 AxesWalker m_lastUsedWalker
The last used step walker in the walker list.

m_firstWalker

 AxesWalker m_firstWalker
The head of the step walker list.

Class org.apache.xpath.axes.WalkingIteratorSorted extends WalkingIterator implements Serializable

serialVersionUID: -4512512007542368213L

Serialized Fields

m_inNaturalOrderStatic

 boolean m_inNaturalOrderStatic
True if the nodes will be found in document order, and this can be determined statically.

Package org.apache.xpath.functions

Class org.apache.xpath.functions.FuncBoolean extends FunctionOneArg implements Serializable

serialVersionUID: 4328660760070034592L

Class org.apache.xpath.functions.FuncCeiling extends FunctionOneArg implements Serializable

serialVersionUID: -1275988936390464739L

Class org.apache.xpath.functions.FuncConcat extends FunctionMultiArgs implements Serializable

serialVersionUID: 1737228885202314413L

Class org.apache.xpath.functions.FuncContains extends Function2Args implements Serializable

serialVersionUID: 5084753781887919723L

Class org.apache.xpath.functions.FuncCount extends FunctionOneArg implements Serializable

serialVersionUID: -7116225100474153751L

Class org.apache.xpath.functions.FuncCurrent extends Function implements Serializable

serialVersionUID: 5715316804877715008L

Class org.apache.xpath.functions.FuncDoclocation extends FunctionDef1Arg implements Serializable

serialVersionUID: 7469213946343568769L

Class org.apache.xpath.functions.FuncExtElementAvailable extends FunctionOneArg implements Serializable

serialVersionUID: -472533699257968546L

Class org.apache.xpath.functions.FuncExtFunction extends Function implements Serializable

serialVersionUID: 5196115554693708718L

Serialized Fields

m_namespace

 String m_namespace
The namespace for the extension function, which should not normally be null or empty.

m_extensionName

 String m_extensionName
The local name of the extension.

m_methodKey

 Object m_methodKey
Unique method key, which is passed to ExtensionsTable#extFunction in order to allow caching of the method.

m_argVec

 Vector m_argVec
Array of static expressions which represent the parameters to the function.

Class org.apache.xpath.functions.FuncExtFunctionAvailable extends FunctionOneArg implements Serializable

serialVersionUID: 5118814314918592241L

Class org.apache.xpath.functions.FuncFalse extends Function implements Serializable

serialVersionUID: 6150918062759769887L

Class org.apache.xpath.functions.FuncFloor extends FunctionOneArg implements Serializable

serialVersionUID: 2326752233236309265L

Class org.apache.xpath.functions.FuncGenerateId extends FunctionDef1Arg implements Serializable

serialVersionUID: 973544842091724273L

Class org.apache.xpath.functions.FuncId extends FunctionOneArg implements Serializable

serialVersionUID: 8930573966143567310L

Class org.apache.xpath.functions.FuncLang extends FunctionOneArg implements Serializable

serialVersionUID: -7868705139354872185L

Class org.apache.xpath.functions.FuncLast extends Function implements Serializable

serialVersionUID: 9205812403085432943L

Serialized Fields

m_isTopLevel

 boolean m_isTopLevel

Class org.apache.xpath.functions.FuncLocalPart extends FunctionDef1Arg implements Serializable

serialVersionUID: 7591798770325814746L

Class org.apache.xpath.functions.FuncNamespace extends FunctionDef1Arg implements Serializable

serialVersionUID: -4695674566722321237L

Class org.apache.xpath.functions.FuncNormalizeSpace extends FunctionDef1Arg implements Serializable

serialVersionUID: -3377956872032190880L

Class org.apache.xpath.functions.FuncNot extends FunctionOneArg implements Serializable

serialVersionUID: 7299699961076329790L

Class org.apache.xpath.functions.FuncNumber extends FunctionDef1Arg implements Serializable

serialVersionUID: 7266745342264153076L

Class org.apache.xpath.functions.FuncPosition extends Function implements Serializable

serialVersionUID: -9092846348197271582L

Serialized Fields

m_isTopLevel

 boolean m_isTopLevel

Class org.apache.xpath.functions.FuncQname extends FunctionDef1Arg implements Serializable

serialVersionUID: -1532307875532617380L

Class org.apache.xpath.functions.FuncRound extends FunctionOneArg implements Serializable

serialVersionUID: -7970583902573826611L

Class org.apache.xpath.functions.FuncStartsWith extends Function2Args implements Serializable

serialVersionUID: 2194585774699567928L

Class org.apache.xpath.functions.FuncString extends FunctionDef1Arg implements Serializable

serialVersionUID: -2206677149497712883L

Class org.apache.xpath.functions.FuncStringLength extends FunctionDef1Arg implements Serializable

serialVersionUID: -159616417996519839L

Class org.apache.xpath.functions.FuncSubstring extends Function3Args implements Serializable

serialVersionUID: -5996676095024715502L

Class org.apache.xpath.functions.FuncSubstringAfter extends Function2Args implements Serializable

serialVersionUID: -8119731889862512194L

Class org.apache.xpath.functions.FuncSubstringBefore extends Function2Args implements Serializable

serialVersionUID: 4110547161672431775L

Class org.apache.xpath.functions.FuncSum extends FunctionOneArg implements Serializable

serialVersionUID: -2719049259574677519L

Class org.apache.xpath.functions.FuncSystemProperty extends FunctionOneArg implements Serializable

serialVersionUID: 3694874980992204867L

Class org.apache.xpath.functions.Function extends Expression implements Serializable

serialVersionUID: 6927661240854599768L

Class org.apache.xpath.functions.Function2Args extends FunctionOneArg implements Serializable

serialVersionUID: 5574294996842710641L

Serialized Fields

m_arg1

 Expression m_arg1
The second argument passed to the function (at index 1).

Class org.apache.xpath.functions.Function3Args extends Function2Args implements Serializable

serialVersionUID: 7915240747161506646L

Serialized Fields

m_arg2

 Expression m_arg2
The third argument passed to the function (at index 2).

Class org.apache.xpath.functions.FunctionDef1Arg extends FunctionOneArg implements Serializable

serialVersionUID: 2325189412814149264L

Class org.apache.xpath.functions.FunctionMultiArgs extends Function3Args implements Serializable

serialVersionUID: 7117257746138417181L

Serialized Fields

m_args

 Expression[] m_args
Argument expressions that are at index 3 or greater.

Class org.apache.xpath.functions.FunctionOneArg extends Function implements Serializable

serialVersionUID: -5180174180765609758L

Serialized Fields

m_arg0

 Expression m_arg0
The first argument passed to the function (at index 0).

Class org.apache.xpath.functions.FuncTranslate extends Function3Args implements Serializable

serialVersionUID: -1672834340026116482L

Class org.apache.xpath.functions.FuncTrue extends Function implements Serializable

serialVersionUID: 5663314547346339447L

Class org.apache.xpath.functions.FuncUnparsedEntityURI extends FunctionOneArg implements Serializable

serialVersionUID: 845309759097448178L

Package org.apache.xpath.objects

Class org.apache.xpath.objects.XBoolean extends XObject implements Serializable

serialVersionUID: -2964933058866100881L

Serialized Fields

m_val

 boolean m_val
Value of the object.

Class org.apache.xpath.objects.XBooleanStatic extends XBoolean implements Serializable

serialVersionUID: -8064147275772687409L

Serialized Fields

m_val

 boolean m_val
The value of the object.

Class org.apache.xpath.objects.XNodeSet extends NodeSequence implements Serializable

serialVersionUID: 1916026368035639667L

Class org.apache.xpath.objects.XNodeSetForDOM extends XNodeSet implements Serializable

serialVersionUID: -8396190713754624640L

Serialized Fields

m_origObj

 Object m_origObj

Class org.apache.xpath.objects.XNull extends XNodeSet implements Serializable

serialVersionUID: -6841683711458983005L

Class org.apache.xpath.objects.XNumber extends XObject implements Serializable

serialVersionUID: -2720400709619020193L

Serialized Fields

m_val

 double m_val
Value of the XNumber object.

Class org.apache.xpath.objects.XObject extends Expression implements Serializable

serialVersionUID: -821887098985662951L

Serialized Fields

m_obj

 Object m_obj
The java object which this object wraps.

Class org.apache.xpath.objects.XRTreeFrag extends XObject implements Serializable

serialVersionUID: -3201553822254911567L

Serialized Fields

m_DTMXRTreeFrag

 DTMXRTreeFrag m_DTMXRTreeFrag

m_dtmRoot

 int m_dtmRoot

m_allowRelease

 boolean m_allowRelease

m_xmlStr

 XMLString m_xmlStr

Class org.apache.xpath.objects.XRTreeFragSelectWrapper extends XRTreeFrag implements Serializable

serialVersionUID: -6526177905590461251L

Class org.apache.xpath.objects.XString extends XObject implements Serializable

serialVersionUID: 2020470518395094525L

Class org.apache.xpath.objects.XStringForChars extends XString implements Serializable

serialVersionUID: -2235248887220850467L

Serialized Fields

m_start

 int m_start
The start position in the fsb.

m_length

 int m_length
The length of the string.

m_strCache

 String m_strCache

Class org.apache.xpath.objects.XStringForFSB extends XString implements Serializable

serialVersionUID: -1533039186550674548L

Serialized Fields

m_start

 int m_start
The start position in the fsb.

m_length

 int m_length
The length of the string.

m_strCache

 String m_strCache
If the str() function is called, the string will be cached here.

m_hash

 int m_hash
cached hash code

Package org.apache.xpath.operations

Class org.apache.xpath.operations.And extends Operation implements Serializable

serialVersionUID: 392330077126534022L

Class org.apache.xpath.operations.Bool extends UnaryOperation implements Serializable

serialVersionUID: 44705375321914635L

Class org.apache.xpath.operations.Div extends Operation implements Serializable

serialVersionUID: 6220756595959798135L

Class org.apache.xpath.operations.Equals extends Operation implements Serializable

serialVersionUID: -2658315633903426134L

Class org.apache.xpath.operations.Gt extends Operation implements Serializable

serialVersionUID: 8927078751014375950L

Class org.apache.xpath.operations.Gte extends Operation implements Serializable

serialVersionUID: 9142945909906680220L

Class org.apache.xpath.operations.Lt extends Operation implements Serializable

serialVersionUID: 3388420509289359422L

Class org.apache.xpath.operations.Lte extends Operation implements Serializable

serialVersionUID: 6945650810527140228L

Class org.apache.xpath.operations.Minus extends Operation implements Serializable

serialVersionUID: -5297672838170871043L

Class org.apache.xpath.operations.Mod extends Operation implements Serializable

serialVersionUID: 5009471154238918201L

Class org.apache.xpath.operations.Mult extends Operation implements Serializable

serialVersionUID: -4956770147013414675L

Class org.apache.xpath.operations.Neg extends UnaryOperation implements Serializable

serialVersionUID: -6280607702375702291L

Class org.apache.xpath.operations.NotEquals extends Operation implements Serializable

serialVersionUID: -7869072863070586900L

Class org.apache.xpath.operations.Number extends UnaryOperation implements Serializable

serialVersionUID: 7196954482871619765L

Class org.apache.xpath.operations.Operation extends Expression implements Serializable

serialVersionUID: -3037139537171050430L

Serialized Fields

m_left

 Expression m_left
The left operand expression.

m_right

 Expression m_right
The right operand expression.

Class org.apache.xpath.operations.Or extends Operation implements Serializable

serialVersionUID: -644107191353853079L

Class org.apache.xpath.operations.Plus extends Operation implements Serializable

serialVersionUID: -4492072861616504256L

Class org.apache.xpath.operations.Quo extends Operation implements Serializable

serialVersionUID: 693765299196169905L

Class org.apache.xpath.operations.String extends UnaryOperation implements Serializable

serialVersionUID: 2973374377453022888L

Class org.apache.xpath.operations.UnaryOperation extends Expression implements Serializable

serialVersionUID: 6536083808424286166L

Serialized Fields

m_right

 Expression m_right
The operand for the operation.

Class org.apache.xpath.operations.Variable extends Expression implements Serializable

serialVersionUID: -4334975375609297049L

Serialized Fields

m_fixUpWasCalled

 boolean m_fixUpWasCalled
Tell if fixupVariables was called.

m_qname

 QName m_qname
The qualified name of the variable.

m_index

 int m_index
The index of the variable, which is either an absolute index to a global, or, if higher than the globals area, must be adjusted by adding the offset to the current stack frame.

m_isGlobal

 boolean m_isGlobal

Class org.apache.xpath.operations.VariableSafeAbsRef extends Variable implements Serializable

serialVersionUID: -9174661990819967452L

Package org.apache.xpath.patterns

Class org.apache.xpath.patterns.ContextMatchStepPattern extends StepPattern implements Serializable

serialVersionUID: -1888092779313211942L

Class org.apache.xpath.patterns.FunctionPattern extends StepPattern implements Serializable

serialVersionUID: -5426793413091209944L

Serialized Fields

m_functionExpr

 Expression m_functionExpr
Should be a expression.

Class org.apache.xpath.patterns.NodeTest extends Expression implements Serializable

serialVersionUID: -5736721866747906182L

Serialized Fields

m_whatToShow

 int m_whatToShow
This attribute determines which node types are accepted.

m_namespace

 String m_namespace
The namespace to be tested for, which may be null.

m_name

 String m_name
The local name to be tested for.

m_score

 XNumber m_score
Statically calculated score for this test. One of SCORE_NODETEST, SCORE_NONE, SCORE_NSWILD, SCORE_QNAME, or SCORE_OTHER.

m_isTotallyWild

 boolean m_isTotallyWild

Class org.apache.xpath.patterns.StepPattern extends NodeTest implements Serializable

serialVersionUID: 9071668960168152644L

Serialized Fields

m_axis

 int m_axis
The axis for this test.

m_targetString

 String m_targetString
The target local name or psuedo name, for hash table lookup optimization.

m_relativePathPattern

 StepPattern m_relativePathPattern
Reference to nodetest and predicate for parent or ancestor.

m_predicates

 Expression[] m_predicates
The list of predicate expressions for this pattern step.

Class org.apache.xpath.patterns.UnionPattern extends Expression implements Serializable

serialVersionUID: -6670449967116905820L

Serialized Fields

m_patterns

 StepPattern[] m_patterns
Array of the contained step patterns to be tested.

Copyright B) 2005 Apache XML Project. All Rights Reserved.