Java Doc for ResultNode.java in  » IDE-Netbeans » xml » org » netbeans » modules » xsl » grammar » 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 » IDE Netbeans » xml » org.netbeans.modules.xsl.grammar 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.netbeans.modules.xsl.grammar.ResultNode

All known Subclasses:   org.netbeans.modules.xsl.grammar.ResultDocument,  org.netbeans.modules.xsl.grammar.ResultAttr,  org.netbeans.modules.xsl.grammar.ResultElement,
ResultNode
public class ResultNode implements Node(Code)
Node that can be used as HintContext. It's used for nested grammars. It can narrow context to given namespace etc.
author:
   asgeir@dimonsoftware.com

Inner Class :public class ResultNodeList implements NodeList

Field Summary
protected  StringignorePrefix
    
protected  StringonlyUsePrefix
    
protected  Nodepeer
    

Constructor Summary
public  ResultNode(Node peer, String ignorePrefix, String onlyUsePrefix)
     Creates a new instance of ResultNode If onlyUsePrefix is non-null, the result node hirarchy will only have elements with this prefix.

Method Summary
public  NodeadoptNode(Node a)
    
public  NodeappendChild(Node newChild)
    
public  NodecloneNode(boolean deep)
    
public  shortcompareDocumentPosition(Node a)
    
protected  NodecreateNode(Node orig)
     Create narrowing result node from given node.
public  NamedNodeMapgetAttributes()
    
public  StringgetBaseURI()
    
public  NodeListgetChildNodes()
    
public  StringgetDocumentURI()
    
public  DOMConfigurationgetDomConfig()
    
public  ObjectgetFeature(String a, String b)
    
public  NodegetFirstChild()
    
public  StringgetInputEncoding()
    
public  NodegetLastChild()
    
public  StringgetLocalName()
    
public  StringgetNamespaceURI()
    
public  NodegetNextSibling()
    
public  StringgetNodeName()
    
public  shortgetNodeType()
    
public  StringgetNodeValue()
    
public  DocumentgetOwnerDocument()
    
public  NodegetParentNode()
    
public  StringgetPrefix()
    
public  NodegetPreviousSibling()
    
public  TypeInfogetSchemaTypeInfo()
    
public  booleangetStrictErrorChecking()
    
public  StringgetTextContent()
    
public  ObjectgetUserData(String a)
    
public  StringgetWholeText()
    
public  StringgetXmlEncoding()
    
public  booleangetXmlStandalone()
    
public  StringgetXmlVersion()
    
protected  booleanhasAllowedPrefix(String name)
     Returns true if the prefix rules described in the constructor javadocs are fulfilled, otherwise returns false.
public  booleanhasAttributes()
    
public  booleanhasChildNodes()
    
public  NodeinsertBefore(Node newChild, Node refChild)
    
public  booleanisDefaultNamespace(String a)
    
public  booleanisElementContentWhitespace()
    
public  booleanisEqualNode(Node a)
    
public  booleanisId()
    
public  booleanisSameNode(Node a)
    
public  booleanisSupported(String feature, String version)
    
public  StringlookupNamespaceURI(String a)
    
public  StringlookupPrefix(String a)
    
public  voidnormalize()
    
public  voidnormalizeDocument()
    
public  NoderemoveChild(Node oldChild)
    
public  NoderenameNode(Node a, String nb, String c)
    
public  NodereplaceChild(Node newChild, Node oldChild)
    
public  TextreplaceWholeText(String a)
    
public  voidsetDocumentURI(String a)
    
public  voidsetIdAttribute(String a, boolean b)
    
public  voidsetIdAttributeNS(String a, String b, boolean c)
    
public  voidsetIdAttributeNode(Attr a, boolean b)
    
public  voidsetNodeValue(String nodeValue)
    
public  voidsetPrefix(String prefix)
    
public  voidsetStrictErrorChecking(boolean a)
    
public  voidsetTextContent(String a)
    
public  ObjectsetUserData(String a, Object b, UserDataHandler c)
    
public  voidsetXmlStandalone(boolean a)
    
public  voidsetXmlVersion(String a)
    

Field Detail
ignorePrefix
protected String ignorePrefix(Code)



onlyUsePrefix
protected String onlyUsePrefix(Code)



peer
protected Node peer(Code)




Constructor Detail
ResultNode
public ResultNode(Node peer, String ignorePrefix, String onlyUsePrefix)(Code)
Creates a new instance of ResultNode If onlyUsePrefix is non-null, the result node hirarchy will only have elements with this prefix. If ignorePrefix is non-null and onlyUsePrefix is null, the node hirarchy will not include nodes with this prefix. If both ignorePrefix and onlyUsePrefix are null, the node hirarchy will only include nodes with no prefixes.




Method Detail
adoptNode
public Node adoptNode(Node a)(Code)



appendChild
public Node appendChild(Node newChild) throws DOMException(Code)



cloneNode
public Node cloneNode(boolean deep)(Code)



compareDocumentPosition
public short compareDocumentPosition(Node a)(Code)



createNode
protected Node createNode(Node orig)(Code)
Create narrowing result node from given node.



getAttributes
public NamedNodeMap getAttributes()(Code)



getBaseURI
public String getBaseURI()(Code)



getChildNodes
public NodeList getChildNodes()(Code)



getDocumentURI
public String getDocumentURI()(Code)



getDomConfig
public DOMConfiguration getDomConfig()(Code)



getFeature
public Object getFeature(String a, String b)(Code)



getFirstChild
public Node getFirstChild()(Code)



getInputEncoding
public String getInputEncoding()(Code)



getLastChild
public Node getLastChild()(Code)



getLocalName
public String getLocalName()(Code)



getNamespaceURI
public String getNamespaceURI()(Code)



getNextSibling
public Node getNextSibling()(Code)



getNodeName
public String getNodeName()(Code)



getNodeType
public short getNodeType()(Code)



getNodeValue
public String getNodeValue() throws DOMException(Code)



getOwnerDocument
public Document getOwnerDocument()(Code)



getParentNode
public Node getParentNode()(Code)



getPrefix
public String getPrefix()(Code)



getPreviousSibling
public Node getPreviousSibling()(Code)



getSchemaTypeInfo
public TypeInfo getSchemaTypeInfo()(Code)



getStrictErrorChecking
public boolean getStrictErrorChecking()(Code)



getTextContent
public String getTextContent()(Code)



getUserData
public Object getUserData(String a)(Code)



getWholeText
public String getWholeText()(Code)



getXmlEncoding
public String getXmlEncoding()(Code)



getXmlStandalone
public boolean getXmlStandalone()(Code)



getXmlVersion
public String getXmlVersion()(Code)



hasAllowedPrefix
protected boolean hasAllowedPrefix(String name)(Code)
Returns true if the prefix rules described in the constructor javadocs are fulfilled, otherwise returns false.



hasAttributes
public boolean hasAttributes()(Code)



hasChildNodes
public boolean hasChildNodes()(Code)



insertBefore
public Node insertBefore(Node newChild, Node refChild) throws DOMException(Code)



isDefaultNamespace
public boolean isDefaultNamespace(String a)(Code)



isElementContentWhitespace
public boolean isElementContentWhitespace()(Code)



isEqualNode
public boolean isEqualNode(Node a)(Code)



isId
public boolean isId()(Code)



isSameNode
public boolean isSameNode(Node a)(Code)



isSupported
public boolean isSupported(String feature, String version)(Code)



lookupNamespaceURI
public String lookupNamespaceURI(String a)(Code)



lookupPrefix
public String lookupPrefix(String a)(Code)



normalize
public void normalize()(Code)



normalizeDocument
public void normalizeDocument()(Code)



removeChild
public Node removeChild(Node oldChild) throws DOMException(Code)



renameNode
public Node renameNode(Node a, String nb, String c)(Code)



replaceChild
public Node replaceChild(Node newChild, Node oldChild) throws DOMException(Code)



replaceWholeText
public Text replaceWholeText(String a)(Code)



setDocumentURI
public void setDocumentURI(String a)(Code)



setIdAttribute
public void setIdAttribute(String a, boolean b)(Code)



setIdAttributeNS
public void setIdAttributeNS(String a, String b, boolean c)(Code)



setIdAttributeNode
public void setIdAttributeNode(Attr a, boolean b)(Code)



setNodeValue
public void setNodeValue(String nodeValue) throws DOMException(Code)



setPrefix
public void setPrefix(String prefix) throws DOMException(Code)



setStrictErrorChecking
public void setStrictErrorChecking(boolean a)(Code)



setTextContent
public void setTextContent(String a)(Code)



setUserData
public Object setUserData(String a, Object b, UserDataHandler c)(Code)



setXmlStandalone
public void setXmlStandalone(boolean a)(Code)



setXmlVersion
public void setXmlVersion(String a)(Code)



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.