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

ASContentModel
public interface ASContentModel extends ASObject(Code)


Field Summary
final public static  shortAS_ALL
     All of the above.
final public static  shortAS_CHOICE
     This constant value signifies a choice operator.
final public static  shortAS_NONE
     None of the above, i.e., neither a choice nor sequence operator.
final public static  shortAS_SEQUENCE
     This constant value signifies a sequence operator.
final public static  intAS_UNBOUNDED
     Signifies unbounded upper limit.


Method Summary
public  intappendsubModel(ASObject newNode)
     Appends a new node to the end of the list representing the subModels.
Parameters:
  newNode - The new node to be appended.
public  shortgetListOperator()
     One of AS_CHOICE, AS_SEQUENCE, AS_ALL or AS_NONE.
public  intgetMaxOccurs()
     maximum occurrence for this content particle.
public  intgetMinOccurs()
     min occurrence for this content particle.
public  ASObjectListgetSubModels()
     Pointers to ASObjects such as ASElementDeclarations and further ASContentModels.
public  voidinsertsubModel(ASObject newNode)
     Inserts a new node in the submodel.
public  voidremovesubModel(ASObject oldNode)
     Removes the ASObject in the submodel.
public  voidsetListOperator(short listOperator)
     One of AS_CHOICE, AS_SEQUENCE, AS_ALL or AS_NONE.
public  voidsetMaxOccurs(int maxOccurs)
     maximum occurrence for this content particle.
public  voidsetMinOccurs(int minOccurs)
     min occurrence for this content particle.
public  voidsetSubModels(ASObjectList subModels)
     Pointers to ASObjects such as ASElementDeclarations and further ASContentModels.

Field Detail
AS_ALL
final public static short AS_ALL(Code)
All of the above.



AS_CHOICE
final public static short AS_CHOICE(Code)
This constant value signifies a choice operator. For example, in a DTD, this would be the '|' operator.



AS_NONE
final public static short AS_NONE(Code)
None of the above, i.e., neither a choice nor sequence operator.



AS_SEQUENCE
final public static short AS_SEQUENCE(Code)
This constant value signifies a sequence operator. For example, in a DTD, this would be the ',' operator.



AS_UNBOUNDED
final public static int AS_UNBOUNDED(Code)
Signifies unbounded upper limit. The MAX_VALUE value is 0xFFFFFFFF FFFFFFFF. This needs to be better defined in the generated bindings.





Method Detail
appendsubModel
public int appendsubModel(ASObject newNode) throws DOMASException(Code)
Appends a new node to the end of the list representing the subModels.
Parameters:
  newNode - The new node to be appended. the length of the subModels.
exception:
  DOMASException - DUPLICATE_NAME_ERR: Raised if a element declaration already exists with the same name within an AS_CHOICE operator.
TYPE_ERR: Raised if type is neither an ASContentModel nor an ASElementDeclaration.



getListOperator
public short getListOperator()(Code)
One of AS_CHOICE, AS_SEQUENCE, AS_ALL or AS_NONE. The operator is applied to all the components(ASObjects) in the subModels. For example, if the list operator is AS_CHOICE and the components in subModels are a, b and c then the abstract schema for the element being declared is (a|b|c).



getMaxOccurs
public int getMaxOccurs()(Code)
maximum occurrence for this content particle. Its value may be 0, a positive integer, or AS_UNBOUNDED to indicate that no upper limit has been set.



getMinOccurs
public int getMinOccurs()(Code)
min occurrence for this content particle. Its value may be 0 or a positive integer.



getSubModels
public ASObjectList getSubModels()(Code)
Pointers to ASObjects such as ASElementDeclarations and further ASContentModels.



insertsubModel
public void insertsubModel(ASObject newNode) throws DOMASException(Code)
Inserts a new node in the submodel. Nodes that already exist in the list are moved as needed.
Parameters:
  newNode - The new node to be inserted.
exception:
  DOMASException - DUPLICATE_NAME_ERR: Raised if a element declaration already exists with the same name within an AS_CHOICE operator.



removesubModel
public void removesubModel(ASObject oldNode)(Code)
Removes the ASObject in the submodel. Nodes that already exist in the list are moved as needed.
Parameters:
  oldNode - The node to be removed.



setListOperator
public void setListOperator(short listOperator)(Code)
One of AS_CHOICE, AS_SEQUENCE, AS_ALL or AS_NONE. The operator is applied to all the components(ASObjects) in the subModels. For example, if the list operator is AS_CHOICE and the components in subModels are a, b and c then the abstract schema for the element being declared is (a|b|c).



setMaxOccurs
public void setMaxOccurs(int maxOccurs)(Code)
maximum occurrence for this content particle. Its value may be 0, a positive integer, or AS_UNBOUNDED to indicate that no upper limit has been set.



setMinOccurs
public void setMinOccurs(int minOccurs)(Code)
min occurrence for this content particle. Its value may be 0 or a positive integer.



setSubModels
public void setSubModels(ASObjectList subModels)(Code)
Pointers to ASObjects such as ASElementDeclarations and further ASContentModels.



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