BEA Systems, Inc.

WebLogic Server 6.0sp2 API Reference

Uses of Interface
weblogic.apache.xalan.xpath.XPathSupport

Packages that use XPathSupport
weblogic.apache.xalan.xpath Infrastructure for processing XPATH expressions 
weblogic.apache.xalan.xpath.dtm   
weblogic.apache.xalan.xpath.xdom   
weblogic.apache.xalan.xpath.xml   
weblogic.apache.xalan.xslt   
weblogic.apache.xalan.xslt.extensions   
 

Uses of XPathSupport in weblogic.apache.xalan.xpath
 

Classes in weblogic.apache.xalan.xpath that implement XPathSupport
 class XPathSupportDefault
           Default class for execution context when XPath is used by itself.
 

Methods in weblogic.apache.xalan.xpath with parameters of type XPathSupport
 XObject Function.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute an XPath function object.
 XObject Function.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int funcID, int endFunc)
          Execute an XPath function object.
 XObject FuncId.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncExtFunctionAvailable.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 org.w3c.dom.DocumentFragment XObject.rtree(XPathSupport support)
          Cast result object to a result tree fragment.
 java.lang.Object XObject.castToType(int t, XPathSupport support)
          Cast object to type t.
 XObject FuncSubstringAfter.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncNormalizeSpace.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncFalse.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncKey.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncSum.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject XPath.execute(XPathSupport execContext, org.w3c.dom.Node contextNode, PrefixResolver namespaceContext)
          Given an expression and a context, evaluate the XPath and return the result.
 XObject XPath.execute(XPathSupport execContext, org.w3c.dom.Node contextNode, PrefixResolver namespaceContext, NodeCallback callback, java.lang.Object callbackInfo, boolean stopAtFirst)
           Given an expression and a context, evaluate the XPath and call the callback as nodes are found.
 double XPath.getMatchScore(XPathSupport execContext, org.w3c.dom.Node context)
          Get the match score of the given node.
protected  XObject XPath.xpath(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Execute from the beginning of the xpath.
protected  XBoolean XPath.or(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          OR two expressions and return the boolean result.
protected  XBoolean XPath.and(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          OR two expressions and return the boolean result.
protected  XBoolean XPath.notequals(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Tell if two expressions are functionally not equal.
protected  XBoolean XPath.equals(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Tell if two expressions are functionally equal.
protected  XBoolean XPath.lte(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Tell if one argument is less than or equal to the other argument.
protected  XBoolean XPath.lt(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Tell if one argument is less than the other argument.
protected  XBoolean XPath.gte(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Tell if one argument is greater than or equal to the other argument.
protected  XBoolean XPath.gt(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Tell if one argument is greater than the other argument.
protected  XNumber XPath.plus(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Give the sum of two arguments.
protected  XNumber XPath.minus(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Give the difference of two arguments.
protected  XNumber XPath.mult(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Multiply two arguments.
protected  XNumber XPath.div(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Divide a number.
protected  XNumber XPath.mod(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Return the remainder from a truncating division.
protected  XNumber XPath.quo(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Return the remainder from a truncating division.
protected  XNumber XPath.neg(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Return the negation of a number.
protected  XString XPath.string(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Cast an expression to a string.
protected  XBoolean XPath.bool(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Cast an expression to a boolean.
protected  XNumber XPath.number(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Cast an expression to a number.
protected  XNodeSet XPath.union(XPathSupport execContext, org.w3c.dom.Node context, int opPos, NodeCallback callback, java.lang.Object callbackInfo)
          Computes the union of its operands which must be node-sets.
protected  XString XPath.literal(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Get a literal value.
protected  XObject XPath.variable(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Get a literal value.
protected  XObject XPath.group(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Execute an expression as a group.
protected  XNumber XPath.numberlit(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Get a literal value.
protected  XObject XPath.arg(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Execute a function argument.
 XNodeSet XPath.locationPath(XPathSupport execContext, org.w3c.dom.Node context, int opPos, NodeCallback callback, java.lang.Object callbackInfo, boolean stopAtFirst)
           Execute a location path.
 XObject XPath.predicate(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
           Evaluate a predicate.
protected  MutableNodeList XPath.step(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Execute a step in a location path.
protected  XObject XPath.extfunction(XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.lang.String namespace, java.lang.String extensionName, java.util.Vector argVec, java.lang.Object methodKey)
          Handle an extension function.
protected  XObject XPath.matchPattern(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Computes the union of its operands which must be node-sets.
protected  XNumber XPath.locationPathPattern(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Execute a location path.
 XObject XPath.execute(XPathSupport execContext, org.w3c.dom.Node context, int opPos)
           Execute the XPath object from a given opcode position.
 XObject XPath.execute(XPathSupport execContext, org.w3c.dom.Node context, int opPos, NodeCallback callback, java.lang.Object callbackInfo, boolean stopAtFirst)
           Execute the XPath object from a given opcode position, calling back to a NodeCallback interface as the nodes are found.
 XObject FuncUnparsedEntityURI.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncCeiling.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncCurrent.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncPosition.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncExtElementAvailable.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncSubstringBefore.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncLoader.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Replace the current function (us) in the table with the actual function the call the function's execute method.
 org.w3c.dom.DocumentFragment XNodeSet.rtree(XPathSupport support)
          Cast result object to a result tree fragment.
 XObject FuncTranslate.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 void MutableNodeList.addNodesInDocOrder(org.w3c.dom.NodeList nodelist, XPathSupport support)
          Copy NodeList members into this nodelist, adding in document order.
 int MutableNodeList.addNodeInDocOrder(org.w3c.dom.Node node, boolean test, XPathSupport support)
          Add the node into a vector of nodes where it should occur in document order.
 int MutableNodeList.addNodeInDocOrder(org.w3c.dom.Node node, XPathSupport support)
          Add the node into a vector of nodes where it should occur in document order.
 XObject FuncStartsWith.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncConcat.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncSubstring.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the substring function.
 XObject FuncDoclocation.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncFloor.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncCount.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncLang.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 void MutableNodeListImpl.addNodesInDocOrder(org.w3c.dom.NodeList nodelist, XPathSupport support)
          Copy NodeList members into this nodelist, adding in document order.
 int MutableNodeListImpl.addNodeInDocOrder(org.w3c.dom.Node node, boolean test, XPathSupport support)
          Add the node into a vector of nodes where it should occur in document order.
 int MutableNodeListImpl.addNodeInDocOrder(org.w3c.dom.Node node, XPathSupport support)
          Add the node into a vector of nodes where it should occur in document order.
static boolean MutableNodeListImpl.isNodeAfter(org.w3c.dom.Node node1, org.w3c.dom.Node node2, XPathSupport support)
          Figure out if node2 should be placed after node1 when placing nodes in a list that is to be sorted in document order.
 XObject FuncNamespace.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncLast.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncFormatNumber.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncTrue.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncBoolean.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncString.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 org.w3c.dom.DocumentFragment XNull.rtree(XPathSupport support)
          Cast result object to a result tree fragment.
 XObject FuncContains.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncDoc.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncGenerateId.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncSystemProperty.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncLocalPart.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XNodeSet XLocator.connectToNodes(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector connectArgs)
          Execute a connection (if it was not executed by the static connect method) and process the following LocationPath, if it is present.
 XNodeSet XLocator.union(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, NodeCallback callback, java.lang.Object callbackInfo)
          Execute a union.
 XNodeSet XLocator.locationPath(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, NodeCallback callback, java.lang.Object callbackInfo, boolean stopAtFirst)
          Execute a location path.
 double XLocator.locationPathPattern(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Execute a location path pattern.
 org.w3c.dom.DocumentFragment XString.rtree(XPathSupport support)
          Cast result object to a result tree fragment.
 void XPathSupport.pushXPathContext(XPath xpath, XPathSupport execContext, org.w3c.dom.Node contextNode, PrefixResolver namespaceContext)
           Push the current XPath selection, needed for support of the last() function in depth-first execution.
 XObject XPathSupport.reExecuteXPathContext(XPath path, XPathSupport execContext, org.w3c.dom.Node context)
           Reexecute the last xpath context after the specified one.
 XNodeSet SimpleNodeLocator.connectToNodes(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector connectArgs)
          Execute a connection (if it was not executed by the static connect method) and process the following LocationPath, if it is present.
 XNodeSet SimpleNodeLocator.union(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, NodeCallback callback, java.lang.Object callbackInfo)
          Computes the union of its operands which must be node-sets.
 XNodeSet SimpleNodeLocator.locationPath(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, NodeCallback callback, java.lang.Object callbackInfo, boolean stopAtFirst)
          Execute a location path.
protected  MutableNodeList SimpleNodeLocator.step(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, NodeCallback callback, java.lang.Object callbackInfo, boolean isSimpleFollowing, boolean stopAtFirst)
          Execute a step and predicates in a location path.
protected  MutableNodeList SimpleNodeLocator.findSelf(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, NodeCallback callback, java.lang.Object callbackInfo, boolean isSimpleFollowing, boolean stopAtFirst)
          Add the context to the list if it meets the NodeTest qualification.
protected  MutableNodeList SimpleNodeLocator.findAttributes(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, boolean isSimpleFollowing, boolean stopAtFirst)
          Add attributes to the list if they meet the NodeTest qualification.
protected  MutableNodeList SimpleNodeLocator.findNamespace(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, boolean isSimpleFollowing, boolean stopAtFirst)
          Add the namespace node of the context.
protected  MutableNodeList SimpleNodeLocator.findChildren(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, NodeCallback callback, java.lang.Object callbackInfo, boolean isSimpleFollowing, boolean stopAtFirst)
          Add children to the list if they meet the NodeTest qualification.
protected  MutableNodeList SimpleNodeLocator.findDescendants(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, NodeCallback callback, java.lang.Object callbackInfo, boolean isSimpleFollowing, boolean stopAtFirst)
          Add the descendants (and the context if the stepType is FROM_DESCENDANTS_OR_SELF) to the list if they meet the NodeTest qualification.
protected  MutableNodeList SimpleNodeLocator.findFollowing(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, boolean isSimpleFollowing, boolean stopAtFirst)
          Add the nodes following the context to the list if they meet the NodeTest qualification.
protected  MutableNodeList SimpleNodeLocator.findFollowingSiblings(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, boolean isSimpleFollowing, boolean stopAtFirst)
          Add the sibling nodes following the context to the list if they meet the NodeTest qualification.
protected  int SimpleNodeLocator.findNodeSet(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, boolean isSimpleFollowing, boolean stopAtFirst)
          Execute a step that performs an OP_VARIABLE, OP_EXTFUNCTION, OP_FUNCTION, or OP_GROUP function.
protected  MutableNodeList SimpleNodeLocator.findRoot(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, boolean isSimpleFollowing, boolean stopAtFirst)
          Execute a step to the root.
protected  MutableNodeList SimpleNodeLocator.findParent(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, boolean isSimpleFollowing, boolean stopAtFirst)
          Add the parent to the list if it meets the NodeTest qualification.
protected  MutableNodeList SimpleNodeLocator.findAncestors(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, boolean isSimpleFollowing, boolean stopAtFirst)
          Add ancestors to the list if they meet the NodeTest qualification.
protected  MutableNodeList SimpleNodeLocator.findAncestorsOrSelf(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, boolean isSimpleFollowing, boolean stopAtFirst)
          Add ancestors or the context to the list if they meet the NodeTest qualification.
protected  MutableNodeList SimpleNodeLocator.findPreceding(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, boolean isSimpleFollowing, boolean stopAtFirst)
          Add the nodes preceding the context to the list if they meet the NodeTest qualification.
protected  MutableNodeList SimpleNodeLocator.findPrecedingSiblings(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, boolean isSimpleFollowing, boolean stopAtFirst)
          Add the sibling nodes preceding the context to the list if they meet the NodeTest qualification.
protected  MutableNodeList SimpleNodeLocator.findNodesOnUnknownAxis(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int stepType, MutableNodeList subQueryResults, boolean isSimpleFollowing, boolean stopAtFirst)
          Add the namespace node of the context.
protected  boolean SimpleNodeLocator.predicate(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Execute a single predicate for a single node.
protected  MutableNodeList SimpleNodeLocator.predicates(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, MutableNodeList subQueryResults, int[] endPredicatesPos)
          Qualify a node list by it's predicates.
 double SimpleNodeLocator.locationPathPattern(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos)
          Execute a a location path pattern.
protected  org.w3c.dom.Node SimpleNodeLocator.stepPattern(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, double[] scoreHolder)
          Execute a step in a location path.
 double SimpleNodeLocator.doPredicate(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int argLen, int startOpPos)
          Test a node to see if it matches the predicate test.
 double SimpleNodeLocator.nodeTest(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, int argLen, int stepType)
          Test a node to see if it matches the given node test.
 XObject FuncNumber.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncStringLength.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 void NodeCallback.processLocatedNode(XPathSupport execContext, org.w3c.dom.Node sourceNode, java.lang.Object callbackInfo)
           
 void XPathSupportDefault.pushXPathContext(XPath xpath, XPathSupport execContext, org.w3c.dom.Node contextNode, PrefixResolver namespaceContext)
           Push the current XPath selection, needed for support of the last() function in depth-first execution.
 XObject XPathSupportDefault.reExecuteXPathContext(XPath path, XPathSupport execContext, org.w3c.dom.Node context)
           Reexecute the last xpath context after the specified one.
 XObject FuncRound.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncNormalize.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncNot.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 XObject FuncQname.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 

Constructors in weblogic.apache.xalan.xpath with parameters of type XPathSupport
XPathProcessorImpl.XPathProcessorImpl(XPathSupport callbacks)
          The parser constructor.
 

Uses of XPathSupport in weblogic.apache.xalan.xpath.dtm
 

Classes in weblogic.apache.xalan.xpath.dtm that implement XPathSupport
 class DTMLiaison
           Liaison to Document Table Model (DTM) XML parser -- the default liaison and parser that XSLTProcessor uses to perform transformations.
 

Uses of XPathSupport in weblogic.apache.xalan.xpath.xdom
 

Classes in weblogic.apache.xalan.xpath.xdom that implement XPathSupport
 class XercesLiaison
           Provides XSLTProcessor an interface to the Xerces XML parser.
 

Uses of XPathSupport in weblogic.apache.xalan.xpath.xml
 

Subinterfaces of XPathSupport in weblogic.apache.xalan.xpath.xml
 interface XMLParserLiaison
           An implementation of this interface acts as a liaison between the XSLT processor and the XML parser.
 

Classes in weblogic.apache.xalan.xpath.xml that implement XPathSupport
 class JaxpLiaison
          Allow use of a generic JAXP parser with Xalan.
 class XMLParserLiaisonDefault
           This class is the default XMLParserLiaison for the XSL Processor.
 

Uses of XPathSupport in weblogic.apache.xalan.xslt
 

Methods in weblogic.apache.xalan.xslt that return XPathSupport
 XPathSupport XSLTEngineImpl.getExecContext()
          Get the execution context for XPath.
 

Methods in weblogic.apache.xalan.xslt with parameters of type XPathSupport
 void ElemTemplateElement.processLocatedNode(XPathSupport execContext, org.w3c.dom.Node sourceNode, java.lang.Object callbackInfo)
          Implementation of NodeCallback interface.
abstract  void AVTPart.evaluate(XPathSupport execContext, java.lang.StringBuffer buf, org.w3c.dom.Node context, PrefixResolver nsNode)
          Write the evaluated value into the given string buffer.
 void AVTPart.setXPathSupport(XPathSupport support)
          Set the XPath support.
 void AVTPartXPath.evaluate(XPathSupport execContext, java.lang.StringBuffer buf, org.w3c.dom.Node context, PrefixResolver nsNode)
          Write the value into the buffer.
 XObject FuncDocument.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 void FuncDocument.error(XPathSupport execContext, int msg, java.lang.Object[] args)
          Tell the user of an error, and probably throw an exception.
 void FuncDocument.warn(XPathSupport execContext, int msg, java.lang.Object[] args)
          Warn the user of a problem.
 java.lang.String AVT.evaluate(XPathSupport execContext, org.w3c.dom.Node context, PrefixResolver nsNode, java.lang.StringBuffer buf)
          Evaluate the AVT and return a String.
 XObject FuncFormatNumb.execute(XPath path, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector args)
          Execute the function.
 void FuncFormatNumb.warn(XPathSupport execContext, int msg, java.lang.Object[] args)
          Warn the user of a problem.
 void XSLTEngineImpl.outputResultTreeFragment(XObject obj, XPathSupport support)
          Given a result tree fragment, walk the tree and output it to the result stream.
 XObject Stylesheet.evalXPathStr(XPathSupport execContext, java.lang.String str, org.w3c.dom.Node context, PrefixResolver nsNode)
          Evaluate an xpath string and return the result.
 void AVTPartSimple.evaluate(XPathSupport execContext, java.lang.StringBuffer buf, org.w3c.dom.Node context, PrefixResolver nsNode)
          Write the value into the buffer.
 

Constructors in weblogic.apache.xalan.xslt with parameters of type XPathSupport
ResultTreeFrag.ResultTreeFrag(org.w3c.dom.Document docFactory, XPathSupport support)
           
ResultTreeFrag.ResultTreeFrag(org.w3c.dom.Document docFactory, MutableNodeList children, XPathSupport support)
           
 

Uses of XPathSupport in weblogic.apache.xalan.xslt.extensions
 

Methods in weblogic.apache.xalan.xslt.extensions with parameters of type XPathSupport
 XNodeSet RowSetLocator.connectToNodes(XPath xpath, XPathSupport execContext, org.w3c.dom.Node context, int opPos, java.util.Vector connectArgs)
          Execute a connection and process the LocationPath, The arguments to the static connect function are re-passed to this function.
 


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