com.japisoft.xpath.node
Class Function

java.lang.Object
  |
  +--com.japisoft.xpath.node.AbstractNode
        |
        +--com.japisoft.xpath.node.Expr
              |
              +--com.japisoft.xpath.node.Function

public class Function
extends Expr

Function node. This function node use the context for finding the good function implantation.

Author:
(c) 2003 JAPISOFT
See Also:
AbstractNode

Field Summary
 java.lang.String functionName
           
 
Constructor Summary
Function()
           
 
Method Summary
 java.lang.Object eval(XPathContext context)
           
 java.lang.String getName()
           
 void setName(java.lang.String functionName)
           
 
Methods inherited from class com.japisoft.xpath.node.Expr
toString
 
Methods inherited from class com.japisoft.xpath.node.AbstractNode
addNode, getNodeAt, getNodeCount, getParentNode
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

functionName

public java.lang.String functionName
Constructor Detail

Function

public Function()
Method Detail

setName

public void setName(java.lang.String functionName)

getName

public java.lang.String getName()

eval

public java.lang.Object eval(XPathContext context)
Overrides:
eval in class Expr