Java Doc for NodeEditAS.java in  » XML » xerces-2_9_1 » org » apache » xerces » dom3 » as » 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 » XML » xerces 2_9_1 » org.apache.xerces.dom3.as 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.xerces.dom3.as.NodeEditAS

NodeEditAS
public interface NodeEditAS (Code)


Field Summary
final public static  shortNS_WF_CHECK
     Check for namespace well-formedness includes WF_CHECK.
final public static  shortPARTIAL_VALIDITY_CHECK
     Checks for whether this node is partially valid.
final public static  shortSTRICT_VALIDITY_CHECK
     Checks for strict validity of the node with respect to active AS which by definition includes NS_WF_CHECK.
final public static  shortWF_CHECK
     Check for well-formedness of this node.


Method Summary
public  booleancanAppendChild(Node newChild)
     Has the same arguments as AppendChild.
Parameters:
  newChild - Node to be appended.
public  booleancanInsertBefore(Node newChild, Node refChild)
     Determines whether the insertBefore operation from the Node interface would make this document invalid with respect to the currently active AS.
public  booleancanRemoveChild(Node oldChild)
     Has the same arguments as RemoveChild.
Parameters:
  oldChild - Node to be removed.
public  booleancanReplaceChild(Node newChild, Node oldChild)
     Has the same arguments as ReplaceChild.
Parameters:
  newChild - New Node.
Parameters:
  oldChild - Node to be replaced.
public  booleanisNodeValid(boolean deep, short wFValidityCheckLevel)
     Determines if the Node is valid relative to currently active AS.

Field Detail
NS_WF_CHECK
final public static short NS_WF_CHECK(Code)
Check for namespace well-formedness includes WF_CHECK.



PARTIAL_VALIDITY_CHECK
final public static short PARTIAL_VALIDITY_CHECK(Code)
Checks for whether this node is partially valid. It includes NS_WF_CHECK.



STRICT_VALIDITY_CHECK
final public static short STRICT_VALIDITY_CHECK(Code)
Checks for strict validity of the node with respect to active AS which by definition includes NS_WF_CHECK.



WF_CHECK
final public static short WF_CHECK(Code)
Check for well-formedness of this node.





Method Detail
canAppendChild
public boolean canAppendChild(Node newChild)(Code)
Has the same arguments as AppendChild.
Parameters:
  newChild - Node to be appended. true if no reason it can't be done; false if it can't be done.



canInsertBefore
public boolean canInsertBefore(Node newChild, Node refChild)(Code)
Determines whether the insertBefore operation from the Node interface would make this document invalid with respect to the currently active AS. Describe "valid" when referring to partially completed documents.
Parameters:
  newChild - Node to be inserted.
Parameters:
  refChild - Reference Node. true if no reason it can't be done; false if it can't be done.



canRemoveChild
public boolean canRemoveChild(Node oldChild)(Code)
Has the same arguments as RemoveChild.
Parameters:
  oldChild - Node to be removed. true if no reason it can't be done; false if it can't be done.



canReplaceChild
public boolean canReplaceChild(Node newChild, Node oldChild)(Code)
Has the same arguments as ReplaceChild.
Parameters:
  newChild - New Node.
Parameters:
  oldChild - Node to be replaced. true if no reason it can't be done; false if it can't be done.



isNodeValid
public boolean isNodeValid(boolean deep, short wFValidityCheckLevel) throws DOMASException(Code)
Determines if the Node is valid relative to currently active AS. It doesn't normalize before checking if the document is valid. To do so, one would need to explicitly call a normalize method.
Parameters:
  deep - Setting the deep flag on causes the isNodeValid method to check for the whole subtree of the current node for validity. Setting it to false only checks the current node and its immediate child nodes. The validate method on the DocumentAS interface, however, checks to determine whether the entire document is valid.
Parameters:
  wFValidityCheckLevel - Flag to tell at what level validity and well-formedness checking is done. true if the node is valid/well-formed in the current context and check level defined by wfValidityCheckLevel, false if not.
exception:
  DOMASException - NO_AS_AVAILABLE: Raised if the DocumentEditAS related to this node does not have any active ASModel and wfValidityCheckLevel is set to PARTIAL or STRICT_VALIDITY_CHECK.



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