/[classpath]/classpath/gnu/xml/xpath/StringLengthFunction.java
ViewVC logotype

Diff of /classpath/gnu/xml/xpath/StringLengthFunction.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by mark, Sat Jul 2 20:32:22 2005 UTC revision 1.3 by dog, Sat Jul 9 20:38:36 2005 UTC
# Line 38  exception statement from your version. * Line 38  exception statement from your version. *
38  package gnu.xml.xpath;  package gnu.xml.xpath;
39    
40  import java.util.List;  import java.util.List;
41    import javax.xml.namespace.QName;
42  import org.w3c.dom.Node;  import org.w3c.dom.Node;
43    
44  /**  /**
# Line 77  final class StringLengthFunction Line 78  final class StringLengthFunction
78                                      arg.clone(context));                                      arg.clone(context));
79    }    }
80    
81      public boolean references(QName var)
82      {
83        return (arg == null) ? false : arg.references(var);
84      }
85    
86    public String toString()    public String toString()
87    {    {
88      return (arg == null) ? "string-length()" : "string-length(" + arg + ")";      return (arg == null) ? "string-length()" : "string-length(" + arg + ")";

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26