public class SchemaGrammar extends Object implements XSGrammar, XSNamespaceItem
| Modifier and Type | Class and Description |
|---|---|
static class |
SchemaGrammar.BuiltinSchemaGrammar |
static class |
SchemaGrammar.Schema4Annotations
A partial schema for schemas for validating annotations.
|
| Modifier and Type | Field and Description |
|---|---|
static XSSimpleType |
fAnySimpleType |
static XSComplexTypeDecl |
fAnyType |
static SchemaGrammar.Schema4Annotations |
SG_Schema4Annotations |
static SchemaGrammar.BuiltinSchemaGrammar |
SG_SchemaNS |
static SchemaGrammar.BuiltinSchemaGrammar |
SG_XSI |
| Modifier | Constructor and Description |
|---|---|
protected |
SchemaGrammar() |
|
SchemaGrammar(String targetNamespace,
XSDDescription grammarDesc,
SymbolTable symbolTable)
Default constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addAnnotation(XSAnnotationImpl annotation) |
void |
addComplexTypeDecl(XSComplexTypeDecl decl,
SimpleLocator locator)
add one complex type decl: for later constraint checking
|
void |
addDocument(Object document,
String location) |
void |
addGlobalAttributeDecl(XSAttributeDecl decl)
register one global attribute
|
void |
addGlobalAttributeGroupDecl(XSAttributeGroupDecl decl)
register one global attribute group
|
void |
addGlobalElementDecl(XSElementDecl decl)
register one global element
|
void |
addGlobalGroupDecl(XSGroupDecl decl)
register one global group
|
void |
addGlobalNotationDecl(XSNotationDecl decl)
register one global notation
|
void |
addGlobalTypeDecl(XSTypeDefinition decl)
register one global type
|
void |
addIDConstraintDecl(XSElementDecl elmDecl,
IdentityConstraint decl)
register one identity constraint
|
void |
addRedefinedGroupDecl(XSGroupDecl derived,
XSGroupDecl base,
SimpleLocator locator)
add a group redefined by restriction: for later constraint checking
|
XSObjectList |
getAnnotations()
[annotations]: a set of annotations if it exists, otherwise an empty
XSObjectList. |
XSAttributeDeclaration |
getAttributeDeclaration(String name)
Convenience method.
|
XSAttributeGroupDefinition |
getAttributeGroup(String name)
Convenience method.
|
XSNamedMap |
getComponents(short objectType)
[schema components]: a list of top-level components, i.e.
|
StringList |
getDocumentLocations()
[document location]
|
XSElementDeclaration |
getElementDeclaration(String name)
Convenience method.
|
XSAttributeDecl |
getGlobalAttributeDecl(String declName)
get one global attribute
|
XSAttributeGroupDecl |
getGlobalAttributeGroupDecl(String declName)
get one global attribute group
|
XSElementDecl |
getGlobalElementDecl(String declName)
get one global element
|
XSGroupDecl |
getGlobalGroupDecl(String declName)
get one global group
|
XSNotationDecl |
getGlobalNotationDecl(String declName)
get one global notation
|
XSTypeDefinition |
getGlobalTypeDecl(String declName)
get one global type
|
XMLGrammarDescription |
getGrammarDescription()
get the
XMLGrammarDescription associated with this
object |
IdentityConstraint |
getIDConstraintDecl(String declName)
get one identity constraint
|
Vector |
getImportedGrammars() |
XSModelGroupDefinition |
getModelGroupDefinition(String name)
Convenience method.
|
XSNotationDeclaration |
getNotationDeclaration(String name)
Convenience method.
|
String |
getSchemaNamespace()
[schema namespace]
|
String |
getTargetNamespace()
Returns this grammar's target namespace.
|
XSTypeDefinition |
getTypeDefinition(String name)
Convenience method.
|
boolean |
hasIDConstraints()
get one identity constraint
|
boolean |
isNamespaceAware() |
void |
setImportedGrammars(Vector importedGrammars) |
XSModel |
toXSModel()
Return an
XSModel that represents components in this schema
grammar. |
XSModel |
toXSModel(XSGrammar[] grammars)
Return an
XSModel that represents components in this schema
grammar and the grammars in the grammarsparameter,
any schema grammars that are imported by them directly or indirectly. |
public static final XSComplexTypeDecl fAnyType
public static final SchemaGrammar.BuiltinSchemaGrammar SG_SchemaNS
public static final SchemaGrammar.Schema4Annotations SG_Schema4Annotations
public static final XSSimpleType fAnySimpleType
public static final SchemaGrammar.BuiltinSchemaGrammar SG_XSI
protected SchemaGrammar()
public SchemaGrammar(String targetNamespace, XSDDescription grammarDesc, SymbolTable symbolTable)
targetNamespace - grammarDesc - the XMLGrammarDescription corresponding to this objec
at the least a systemId should always be known.symbolTable - needed for annotation supportpublic XMLGrammarDescription getGrammarDescription()
GrammarXMLGrammarDescription associated with this
objectgetGrammarDescription in interface Grammarpublic boolean isNamespaceAware()
public void setImportedGrammars(Vector importedGrammars)
public Vector getImportedGrammars()
public final String getTargetNamespace()
public void addGlobalAttributeDecl(XSAttributeDecl decl)
public void addGlobalAttributeGroupDecl(XSAttributeGroupDecl decl)
public void addGlobalElementDecl(XSElementDecl decl)
public void addGlobalGroupDecl(XSGroupDecl decl)
public void addGlobalNotationDecl(XSNotationDecl decl)
public void addGlobalTypeDecl(XSTypeDefinition decl)
public final void addIDConstraintDecl(XSElementDecl elmDecl, IdentityConstraint decl)
public final XSAttributeDecl getGlobalAttributeDecl(String declName)
public final XSAttributeGroupDecl getGlobalAttributeGroupDecl(String declName)
public final XSElementDecl getGlobalElementDecl(String declName)
public final XSGroupDecl getGlobalGroupDecl(String declName)
public final XSNotationDecl getGlobalNotationDecl(String declName)
public final XSTypeDefinition getGlobalTypeDecl(String declName)
public final IdentityConstraint getIDConstraintDecl(String declName)
public final boolean hasIDConstraints()
public void addComplexTypeDecl(XSComplexTypeDecl decl, SimpleLocator locator)
public void addRedefinedGroupDecl(XSGroupDecl derived, XSGroupDecl base, SimpleLocator locator)
public String getSchemaNamespace()
getSchemaNamespace in interface XSNamespaceItempublic XSNamedMap getComponents(short objectType)
getComponents in interface XSNamespaceItemobjectType - The type of the declaration, i.e.
ELEMENT_DECLARATION. Note that
XSTypeDefinition.SIMPLE_TYPE and
XSTypeDefinition.COMPLEX_TYPE can also be used as the
objectType to retrieve only complex types or simple
types, instead of all types.objectType or an empty XSNamedMap if no
such definitions exist.public XSTypeDefinition getTypeDefinition(String name)
getTypeDefinition in interface XSNamespaceItemname - The name of the definition.XSTypeDefinition or null if such definition
does not exist.public XSAttributeDeclaration getAttributeDeclaration(String name)
getAttributeDeclaration in interface XSNamespaceItemname - The name of the declaration.public XSElementDeclaration getElementDeclaration(String name)
getElementDeclaration in interface XSNamespaceItemname - The name of the declaration.public XSAttributeGroupDefinition getAttributeGroup(String name)
getAttributeGroup in interface XSNamespaceItemname - The name of the definition.public XSModelGroupDefinition getModelGroupDefinition(String name)
getModelGroupDefinition in interface XSNamespaceItemname - The name of the definition.public XSNotationDeclaration getNotationDeclaration(String name)
getNotationDeclaration in interface XSNamespaceItemname - The name of the declaration.public StringList getDocumentLocations()
getDocumentLocations in interface XSNamespaceItempublic XSModel toXSModel()
XSModel that represents components in this schema
grammar.public XSModel toXSModel(XSGrammar[] grammars)
XSGrammarXSModel that represents components in this schema
grammar and the grammars in the grammarsparameter,
any schema grammars that are imported by them directly or indirectly.public XSObjectList getAnnotations()
XSNamespaceItemXSObjectList.getAnnotations in interface XSNamespaceItemXSNamespaceItem.getAnnotations()public void addAnnotation(XSAnnotationImpl annotation)
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.