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


org.apache.xerces.xs.XSComplexTypeDefinition

All known Subclasses:   org.apache.xerces.impl.xs.XSComplexTypeDecl,
XSComplexTypeDefinition
public interface XSComplexTypeDefinition extends XSTypeDefinition(Code)
This interface represents the Complex Type Definition schema component.


Field Summary
final public static  shortCONTENTTYPE_ELEMENT
     Represents an element-only content type.
final public static  shortCONTENTTYPE_EMPTY
     Represents an empty content type.
final public static  shortCONTENTTYPE_MIXED
     Represents a mixed content type.
final public static  shortCONTENTTYPE_SIMPLE
     Represents a simple content type.


Method Summary
public  booleangetAbstract()
     [abstract]: a boolean.
public  XSObjectListgetAnnotations()
     A sequence of [annotations] or an empty XSObjectList.
public  XSObjectListgetAttributeUses()
     A set of attribute uses if it exists, otherwise an empty XSObjectList.
public  XSWildcardgetAttributeWildcard()
     An attribute wildcard if it exists, otherwise null.
public  shortgetContentType()
     [content type]: one of empty (CONTENTTYPE_EMPTY), a simple type definition (CONTENTTYPE_SIMPLE), mixed ( CONTENTTYPE_MIXED), or element-only ( CONTENTTYPE_ELEMENT).
public  shortgetDerivationMethod()
     [derivation method]: either DERIVATION_EXTENSION, DERIVATION_RESTRICTION, or DERIVATION_NONE (see XSConstants).
public  XSParticlegetParticle()
     A particle for a mixed or element-only content model, otherwise null.
public  shortgetProhibitedSubstitutions()
     [prohibited substitutions]: A subset of {extension, restriction} or DERIVATION_NONE represented as a bit flag (see XSConstants).
public  XSSimpleTypeDefinitiongetSimpleType()
     A simple type definition corresponding to a simple content model, otherwise null.
public  booleanisProhibitedSubstitution(short restriction)
     [prohibited substitutions]: a subset of {extension, restriction}
Parameters:
  restriction - Extension or restriction constants (see XSConstants).

Field Detail
CONTENTTYPE_ELEMENT
final public static short CONTENTTYPE_ELEMENT(Code)
Represents an element-only content type. An element-only content type validates elements with children that conform to the supplied content model.



CONTENTTYPE_EMPTY
final public static short CONTENTTYPE_EMPTY(Code)
Represents an empty content type. A content type with the distinguished value empty validates elements with no character or element information item children.



CONTENTTYPE_MIXED
final public static short CONTENTTYPE_MIXED(Code)
Represents a mixed content type.



CONTENTTYPE_SIMPLE
final public static short CONTENTTYPE_SIMPLE(Code)
Represents a simple content type. A content type which is simple validates elements with character-only children.





Method Detail
getAbstract
public boolean getAbstract()(Code)
[abstract]: a boolean. Complex types for which abstract is true must not be used as the type definition for the validation of element information items.



getAnnotations
public XSObjectList getAnnotations()(Code)
A sequence of [annotations] or an empty XSObjectList.



getAttributeUses
public XSObjectList getAttributeUses()(Code)
A set of attribute uses if it exists, otherwise an empty XSObjectList.



getAttributeWildcard
public XSWildcard getAttributeWildcard()(Code)
An attribute wildcard if it exists, otherwise null.



getContentType
public short getContentType()(Code)
[content type]: one of empty (CONTENTTYPE_EMPTY), a simple type definition (CONTENTTYPE_SIMPLE), mixed ( CONTENTTYPE_MIXED), or element-only ( CONTENTTYPE_ELEMENT).



getDerivationMethod
public short getDerivationMethod()(Code)
[derivation method]: either DERIVATION_EXTENSION, DERIVATION_RESTRICTION, or DERIVATION_NONE (see XSConstants).



getParticle
public XSParticle getParticle()(Code)
A particle for a mixed or element-only content model, otherwise null.



getProhibitedSubstitutions
public short getProhibitedSubstitutions()(Code)
[prohibited substitutions]: A subset of {extension, restriction} or DERIVATION_NONE represented as a bit flag (see XSConstants).



getSimpleType
public XSSimpleTypeDefinition getSimpleType()(Code)
A simple type definition corresponding to a simple content model, otherwise null.



isProhibitedSubstitution
public boolean isProhibitedSubstitution(short restriction)(Code)
[prohibited substitutions]: a subset of {extension, restriction}
Parameters:
  restriction - Extension or restriction constants (see XSConstants). True if restriction is a prohibited substitution, otherwise false.



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