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

All known Subclasses:   org.apache.xerces.impl.xs.XSElementDecl,
XSElementDeclaration
public interface XSElementDeclaration extends XSTerm(Code)
The interface represents the Element Declaration schema component.




Method Summary
public  booleangetAbstract()
     {abstract} A boolean.
public  ObjectgetActualVC()
     Value Constraint: Binding specific actual constraint value or null if the value is in error or there is no value constraint.
public  shortgetActualVCType()
     The actual constraint value built-in datatype, e.g.
public  XSAnnotationgetAnnotation()
     An annotation if it exists, otherwise null.
public  XSObjectListgetAnnotations()
     A sequence of [annotations] or an empty XSObjectList.
public  shortgetConstraintType()
     [Value constraint]: one of VC_NONE, VC_DEFAULT, VC_FIXED.
public  StringgetConstraintValue()
     [Value constraint]: the constraint value with respect to the [type definition], otherwise null.
public  shortgetDisallowedSubstitutions()
     [disallowed substitutions]: the returned value is a bit combination of the subset of { DERIVATION_SUBSTITUTION, DERIVATION_EXTENSION, DERIVATION_RESTRICTION } corresponding to substitutions disallowed by this XSElementDeclaration or DERIVATION_NONE.
public  XSComplexTypeDefinitiongetEnclosingCTDefinition()
     The complex type definition for locally scoped declarations (see scope), otherwise null if no such definition exists.
public  XSNamedMapgetIdentityConstraints()
     identity-constraint definitions: a set of constraint definitions if it exists, otherwise an empty XSNamedMap.
public  ShortListgetItemValueTypes()
     In the case the actual constraint value represents a list, i.e.
public  booleangetNillable()
     If nillable is true, then an element may also be valid if it carries the namespace qualified attribute with local name nil from namespace http://www.w3.org/2001/XMLSchema-instance and value true (xsi:nil) even if it has no text or element content despite a content type which would otherwise require content.
public  shortgetScope()
     [scope].
public  XSElementDeclarationgetSubstitutionGroupAffiliation()
     [substitution group affiliation]: a top-level element definition if it exists, otherwise null.
public  shortgetSubstitutionGroupExclusions()
     [substitution group exclusions]: the returned value is a bit combination of the subset of { DERIVATION_EXTENSION, DERIVATION_RESTRICTION} or DERIVATION_NONE.
public  XSTypeDefinitiongetTypeDefinition()
     [type definition]: either a simple type definition or a complex type definition.
public  booleanisDisallowedSubstitution(short disallowed)
     Convenience method that checks if disallowed is a disallowed substitution for this element declaration.
public  booleanisSubstitutionGroupExclusion(short exclusion)
     Convenience method that checks if exclusion is a substitution group exclusion for this element declaration.



Method Detail
getAbstract
public boolean getAbstract()(Code)
{abstract} A boolean.



getActualVC
public Object getActualVC() throws XSException(Code)
Value Constraint: Binding specific actual constraint value or null if the value is in error or there is no value constraint.
exception:
  XSException - NOT_SUPPORTED_ERR: Raised if the implementation does not support this method.



getActualVCType
public short getActualVCType() throws XSException(Code)
The actual constraint value built-in datatype, e.g. STRING_DT, SHORT_DT. If the type definition of this value is a list type definition, this method returns LIST_DT. If the type definition of this value is a list type definition whose item type is a union type definition, this method returns LISTOFUNION_DT. To query the actual constraint value of the list or list of union type definitions use itemValueTypes. If the actualNormalizedValue is null, this method returns UNAVAILABLE_DT .
exception:
  XSException - NOT_SUPPORTED_ERR: Raised if the implementation does not support this method.



getAnnotation
public XSAnnotation getAnnotation()(Code)
An annotation if it exists, otherwise null. If not null then the first [annotation] from the sequence of annotations.



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



getConstraintType
public short getConstraintType()(Code)
[Value constraint]: one of VC_NONE, VC_DEFAULT, VC_FIXED.



getConstraintValue
public String getConstraintValue()(Code)
[Value constraint]: the constraint value with respect to the [type definition], otherwise null.



getDisallowedSubstitutions
public short getDisallowedSubstitutions()(Code)
[disallowed substitutions]: the returned value is a bit combination of the subset of { DERIVATION_SUBSTITUTION, DERIVATION_EXTENSION, DERIVATION_RESTRICTION } corresponding to substitutions disallowed by this XSElementDeclaration or DERIVATION_NONE.



getEnclosingCTDefinition
public XSComplexTypeDefinition getEnclosingCTDefinition()(Code)
The complex type definition for locally scoped declarations (see scope), otherwise null if no such definition exists.



getIdentityConstraints
public XSNamedMap getIdentityConstraints()(Code)
identity-constraint definitions: a set of constraint definitions if it exists, otherwise an empty XSNamedMap.



getItemValueTypes
public ShortList getItemValueTypes() throws XSException(Code)
In the case the actual constraint value represents a list, i.e. the actualValueType is LIST_DT, the returned array consists of one type kind which represents the itemType. If the actual constraint value represents a list type definition whose item type is a union type definition, i.e. LISTOFUNION_DT, for each actual constraint value in the list the array contains the corresponding memberType kind. For examples, see ItemPSVI.itemValueTypes.
exception:
  XSException - NOT_SUPPORTED_ERR: Raised if the implementation does not support this method.



getNillable
public boolean getNillable()(Code)
If nillable is true, then an element may also be valid if it carries the namespace qualified attribute with local name nil from namespace http://www.w3.org/2001/XMLSchema-instance and value true (xsi:nil) even if it has no text or element content despite a content type which would otherwise require content.



getScope
public short getScope()(Code)
[scope]. One of SCOPE_GLOBAL, SCOPE_LOCAL, or SCOPE_ABSENT. If the scope is local, then the enclosingCTDefinition is present.



getSubstitutionGroupAffiliation
public XSElementDeclaration getSubstitutionGroupAffiliation()(Code)
[substitution group affiliation]: a top-level element definition if it exists, otherwise null.



getSubstitutionGroupExclusions
public short getSubstitutionGroupExclusions()(Code)
[substitution group exclusions]: the returned value is a bit combination of the subset of { DERIVATION_EXTENSION, DERIVATION_RESTRICTION} or DERIVATION_NONE.



getTypeDefinition
public XSTypeDefinition getTypeDefinition()(Code)
[type definition]: either a simple type definition or a complex type definition.



isDisallowedSubstitution
public boolean isDisallowedSubstitution(short disallowed)(Code)
Convenience method that checks if disallowed is a disallowed substitution for this element declaration.
Parameters:
  disallowed - {DERIVATION_SUBSTITUTION, DERIVATION_EXTENSION, DERIVATION_RESTRICTION} or DERIVATION_NONE. Represents a block set for the element. True if disallowed is a part of the substitution group exclusion subset.



isSubstitutionGroupExclusion
public boolean isSubstitutionGroupExclusion(short exclusion)(Code)
Convenience method that checks if exclusion is a substitution group exclusion for this element declaration.
Parameters:
  exclusion - DERIVATION_EXTENSION, DERIVATION_RESTRICTION or DERIVATION_NONE. Represents final set for the element. True if exclusion is a part of the substitution group exclusion subset.



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