|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sf.saxon.expr.Expression net.sf.saxon.expr.FunctionCall net.sf.saxon.functions.ExtensionFunctionCall
public class ExtensionFunctionCall
This class acts as a container for an extension function defined to call a method in a user-defined class.
Note that the binding of an XPath function call to a Java method is done in
class JavaExtensionLibrary
Field Summary |
---|
Fields inherited from class net.sf.saxon.expr.Expression |
---|
EVALUATE_METHOD, ITERATE_METHOD, PROCESS_METHOD |
Constructor Summary | |
---|---|
ExtensionFunctionCall()
Default constructor |
Method Summary | |
---|---|
PathMap.PathMapNodeSet |
addToPathMap(PathMap pathMap,
PathMap.PathMapNodeSet pathMapNodeSet)
Add a representation of this expression to a PathMap. |
void |
checkArguments(ExpressionVisitor visitor)
Method called by the expression parser when all arguments have been supplied |
int |
computeCardinality()
Compute the static cardinality of this expression |
Expression |
copy()
Copy an expression. |
int |
getIntrinsicDependencies()
Determine which aspects of the context the expression depends on. |
ItemType |
getItemType(TypeHierarchy th)
Determine the data type of the expression, if possible. |
Class |
getTargetClass()
Get the class containing the method being called |
AccessibleObject |
getTargetMethod()
Get the target method (or field, or constructor) being called |
void |
init(StructuredQName functionName,
Class theClass,
AccessibleObject object,
Configuration config)
Initialization: creates an ExtensionFunctionCall |
SequenceIterator |
iterate(XPathContext context)
Evaluate the function. |
Expression |
preEvaluate(ExpressionVisitor visitor)
preEvaluate: this method suppresses compile-time evaluation by doing nothing (because the external function might have side-effects and might use the context) |
static String |
toCamelCase(String name,
boolean debug,
PrintStream diag)
Convert a name to camelCase (by removing hyphens and changing the following letter to capitals) |
Methods inherited from class net.sf.saxon.expr.FunctionCall |
---|
addExternalFunctionCallToPathMap, equals, explain, getArguments, getDisplayName, getFunctionName, getNumberOfArguments, hashCode, iterateSubExpressions, optimize, promote, replaceSubExpression, setArguments, setFunctionName, simplify, toString, typeCheck |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public ExtensionFunctionCall()
Method Detail |
---|
public void init(StructuredQName functionName, Class theClass, AccessibleObject object, Configuration config)
functionName
- the name of the function, for display purposestheClass
- the Java class containing the method to be calledobject
- the method, field, or constructor of the Java class to be calledconfig
- the Saxon configurationpublic Expression preEvaluate(ExpressionVisitor visitor)
preEvaluate
in class FunctionCall
visitor
- an expression visitor
public void checkArguments(ExpressionVisitor visitor) throws XPathException
visitor
- the expression visitor
XPathException
public Expression copy()
copy
in class Expression
public int getIntrinsicDependencies()
getIntrinsicDependencies
in class Expression
public PathMap.PathMapNodeSet addToPathMap(PathMap pathMap, PathMap.PathMapNodeSet pathMapNodeSet)
The default implementation of this method assumes that an expression does no navigation other than the navigation done by evaluating its subexpressions, and that the subexpressions are evaluated in the same context as the containing expression. The method must be overridden for any expression where these assumptions do not hold. For example, implementations exist for AxisExpression, ParentExpression, and RootExpression (because they perform navigation), and for the doc(), document(), and collection() functions because they create a new navigation root. Implementations also exist for PathExpression and FilterExpression because they have subexpressions that are evaluated in a different context from the calling expression.
addToPathMap
in class Expression
pathMap
- the PathMap to which the expression should be addedpathMapNodeSet
-
public SequenceIterator iterate(XPathContext context) throws XPathException
iterate
in interface SequenceIterable
iterate
in class Expression
context
- The context in which the function is to be evaluated
XPathException
- if the function cannot be evaluated.public Class getTargetClass()
public AccessibleObject getTargetMethod()
public ItemType getItemType(TypeHierarchy th)
This method will always return a result, though it may be the best approximation that is available at the time.
getItemType
in class Expression
th
- the type hierarchy cache
public int computeCardinality()
Expression
StaticProperty.ALLOWS_ZERO_OR_ONE
,
StaticProperty.EXACTLY_ONE
, StaticProperty.ALLOWS_ONE_OR_MORE
,
StaticProperty.ALLOWS_ZERO_OR_MORE
public static String toCamelCase(String name, boolean debug, PrintStream diag)
name
- the name to be converted to camelCasedebug
- true if tracing is requireddiag
- the output stream for diagnostic trace output
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |