Java Doc for ElementEditAS.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.ElementEditAS

ElementEditAS
public interface ElementEditAS extends NodeEditAS(Code)




Method Summary
public  booleancanRemoveAttribute(String attrname)
     Verifies if an attribute by the given name can be removed.
Parameters:
  attrname - Name of attribute.
public  booleancanRemoveAttributeNS(String attrname, String namespaceURI)
     Verifies if an attribute by the given local name and namespace can be removed.
Parameters:
  attrname - Local name of the attribute to be removed.
Parameters:
  namespaceURI - The namespace URI of the attribute to remove.
public  booleancanRemoveAttributeNode(Node attrNode)
     Determines if an attribute node can be removed.
Parameters:
  attrNode - The Attr node to remove from the attribute list.
public  booleancanSetAttribute(String attrname, String attrval)
     Determines if the value for specified attribute can be set.
Parameters:
  attrname - Name of attribute.
Parameters:
  attrval - Value to be assigned to the attribute.
public  booleancanSetAttributeNS(String name, String attrval, String namespaceURI)
     Determines if the attribute with given namespace and qualified name can be created if not already present in the attribute list of the element.
public  booleancanSetAttributeNode(Attr attrNode)
     Determines if an attribute node can be added with respect to the validity check level.This is an attribute node, there is no need for canSetAttributreNodeNS!
Parameters:
  attrNode - Node in which the attribute can possibly be set.
public  shortcontentType()
     Determines element content type.
public  NodeListgetAttributeList()
     Returns an NodeList containing all the possible Attrs that can appear with this type of element.
public  NodeListgetChildElements()
     Returns an NodeList containing the possible Element names that can appear as children of this type of element.
public  NodeListgetDefinedElementTypes()
     The list of qualified element names defined in the abstract schema.
public  NodeListgetParentElements()
     Returns an NodeList containing the possible Element names that can appear as a parent of this type of element.
public  booleanisElementDefined(String elemTypeName)
     Determines if this element is defined in the currently active AS.
Parameters:
  elemTypeName - Name of element.
public  booleanisElementDefinedNS(String elemTypeName, String namespaceURI, String name)
     Determines if this element in this namespace is defined in the currently active AS.
Parameters:
  elemTypeName - Name of element.
Parameters:
  namespaceURI - namespaceURI of namespace.
Parameters:
  name - Qualified name of namespace.



Method Detail
canRemoveAttribute
public boolean canRemoveAttribute(String attrname)(Code)
Verifies if an attribute by the given name can be removed.
Parameters:
  attrname - Name of attribute. true if no reason it can't be done; false if it can't be done.



canRemoveAttributeNS
public boolean canRemoveAttributeNS(String attrname, String namespaceURI)(Code)
Verifies if an attribute by the given local name and namespace can be removed.
Parameters:
  attrname - Local name of the attribute to be removed.
Parameters:
  namespaceURI - The namespace URI of the attribute to remove. true if no reason it can't be done; false if it can't be done.



canRemoveAttributeNode
public boolean canRemoveAttributeNode(Node attrNode)(Code)
Determines if an attribute node can be removed.
Parameters:
  attrNode - The Attr node to remove from the attribute list. true if no reason it can't be done; false if it can't be done.



canSetAttribute
public boolean canSetAttribute(String attrname, String attrval)(Code)
Determines if the value for specified attribute can be set.
Parameters:
  attrname - Name of attribute.
Parameters:
  attrval - Value to be assigned to the attribute. true if no reason it can't be done; false if it can't be done.



canSetAttributeNS
public boolean canSetAttributeNS(String name, String attrval, String namespaceURI)(Code)
Determines if the attribute with given namespace and qualified name can be created if not already present in the attribute list of the element. If the attribute with same qualified name and namespaceURI is already present in the elements attribute list it tests for the value of the attribute and its prefix to the new value. See DOM core setAttributeNS.
Parameters:
  name - Qualified name of attribute.
Parameters:
  attrval - Value to be assigned to the attribute.
Parameters:
  namespaceURI - namespaceURI of namespace. true if no reason it can't be done; false if it can't be done.



canSetAttributeNode
public boolean canSetAttributeNode(Attr attrNode)(Code)
Determines if an attribute node can be added with respect to the validity check level.This is an attribute node, there is no need for canSetAttributreNodeNS!
Parameters:
  attrNode - Node in which the attribute can possibly be set. true if no reason it can't be done; false if it can't be done.



contentType
public short contentType()(Code)
Determines element content type. Constant for one of EMPTY_CONTENTTYPE, ANY_CONTENTTYPE, MIXED_CONTENTTYPE, ELEMENTS_CONTENTTYPE.



getAttributeList
public NodeList getAttributeList()(Code)
Returns an NodeList containing all the possible Attrs that can appear with this type of element. List of possible attributes of this element.



getChildElements
public NodeList getChildElements()(Code)
Returns an NodeList containing the possible Element names that can appear as children of this type of element. List of possible children element types of this element.



getDefinedElementTypes
public NodeList getDefinedElementTypes()(Code)
The list of qualified element names defined in the abstract schema.



getParentElements
public NodeList getParentElements()(Code)
Returns an NodeList containing the possible Element names that can appear as a parent of this type of element. List of possible parent element types of this element.



isElementDefined
public boolean isElementDefined(String elemTypeName)(Code)
Determines if this element is defined in the currently active AS.
Parameters:
  elemTypeName - Name of element. A boolean that is true if the element is defined, false otherwise.



isElementDefinedNS
public boolean isElementDefinedNS(String elemTypeName, String namespaceURI, String name)(Code)
Determines if this element in this namespace is defined in the currently active AS.
Parameters:
  elemTypeName - Name of element.
Parameters:
  namespaceURI - namespaceURI of namespace.
Parameters:
  name - Qualified name of namespace. This is for sub-elements. A boolean that is true if the element is defined, false otherwise.



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