Java Doc for NodeUtils.java in  » Scripting » Kawa » gnu » xquery » util » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Scripting » Kawa » gnu.xquery.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   gnu.xquery.util.NodeUtils

NodeUtils
public class NodeUtils (Code)


Field Summary
static  StringcollectionNamespace
     Internal namespace used to manage cached collections.
final public static  SymbolcollectionResolverSymbol
     Symbol used to bind a collection resolver.


Method Summary
public static  booleanavailableCached(Object uri, Object base)
     Check if an XML document is available, caching the result. Only positive results are cached; failures are not.
public static  ObjectbaseUri(Object arg)
    
public static  Objectcollection(Object uri, Object base)
    
public static  voiddata$X(Object arg, CallContext ctx)
    
public static  ObjectdocCached(Object uri, Object base)
     Parse an XML document, caching the result.
public static  ObjectdocumentUri(Object arg)
    
static  ObjectgetIDs(Object arg, Object collector)
     Extract canditate IDREFs from arg.
public static  StringgetLang(KNode node)
    
public static  ObjectgetSavedCollection(Object uri, Environment env)
     Default resolver for fn:collection.
public static  ObjectgetSavedCollection(Object uri)
     Default resolver for fn:collection.
public static  voidid$X(Object arg1, Object arg2, CallContext ctx)
    
public static  Objectidref(Object arg1, Object arg2)
    
public static  voidinScopePrefixes$X(Object node, CallContext ctx)
    
public static  booleanlang(Object testlang, Object node)
    
public static  StringlocalName(Object node)
    
public static  Stringname(Object node)
    
public static  ObjectnamespaceURI(Object node)
    
public static  Objectnilled(Object arg)
    
public static  ObjectnodeName(Object node)
    
public static  voidprefixesFromNodetype(XName name, Consumer out)
    
static  Objectresolve(Object uri, Object base, String fname)
    
public static  Objectroot(Object arg)
     Return the root node of the argument.
public static  KDocumentrootDocument(Object arg)
     Return root node, coerced to a document node.
public static  voidsetSavedCollection(Object uri, Object value, Environment env)
     Add a uri-to-value binding that setSavedCollection can later return.
public static  voidsetSavedCollection(Object uri, Object value)
     Add a uri-to-value binding that setSavedCollection can later return.

Field Detail
collectionNamespace
static String collectionNamespace(Code)
Internal namespace used to manage cached collections.



collectionResolverSymbol
final public static Symbol collectionResolverSymbol(Code)
Symbol used to bind a collection resolver.





Method Detail
availableCached
public static boolean availableCached(Object uri, Object base) throws Throwable(Code)
Check if an XML document is available, caching the result. Only positive results are cached; failures are not. Thus it is possible for a false result to be followed by a true result, but not vice versa. This implements the standard XQuery fn:doc-available function.



baseUri
public static Object baseUri(Object arg)(Code)



collection
public static Object collection(Object uri, Object base) throws Throwable(Code)



data$X
public static void data$X(Object arg, CallContext ctx)(Code)



docCached
public static Object docCached(Object uri, Object base) throws Throwable(Code)
Parse an XML document, caching the result. Only positive results are cached; failures are not.) This implements the standard XQuery fn:doc function.



documentUri
public static Object documentUri(Object arg)(Code)



getIDs
static Object getIDs(Object arg, Object collector)(Code)
Extract canditate IDREFs from arg. null (if no IDREF s);a String (if a single IDREF );or a Stack (if more than one IDREF s).



getLang
public static String getLang(KNode node)(Code)



getSavedCollection
public static Object getSavedCollection(Object uri, Environment env)(Code)
Default resolver for fn:collection. Return nodes previously bound using setSavedCollection.



getSavedCollection
public static Object getSavedCollection(Object uri)(Code)
Default resolver for fn:collection. Return nodes previously bound using setSavedCollection.



id$X
public static void id$X(Object arg1, Object arg2, CallContext ctx)(Code)



idref
public static Object idref(Object arg1, Object arg2)(Code)



inScopePrefixes$X
public static void inScopePrefixes$X(Object node, CallContext ctx)(Code)



lang
public static boolean lang(Object testlang, Object node)(Code)



localName
public static String localName(Object node)(Code)



name
public static String name(Object node)(Code)



namespaceURI
public static Object namespaceURI(Object node)(Code)



nilled
public static Object nilled(Object arg)(Code)



nodeName
public static Object nodeName(Object node)(Code)



prefixesFromNodetype
public static void prefixesFromNodetype(XName name, Consumer out)(Code)



resolve
static Object resolve(Object uri, Object base, String fname) throws Throwable(Code)



root
public static Object root(Object arg)(Code)
Return the root node of the argument.



rootDocument
public static KDocument rootDocument(Object arg)(Code)
Return root node, coerced to a document node. Used to implement '/'-rooted path expressions.



setSavedCollection
public static void setSavedCollection(Object uri, Object value, Environment env)(Code)
Add a uri-to-value binding that setSavedCollection can later return.



setSavedCollection
public static void setSavedCollection(Object uri, Object value)(Code)
Add a uri-to-value binding that setSavedCollection can later return.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.