Package net.sf.saxon.type
Interface SchemaDeclaration
-
public interface SchemaDeclarationThis is a marker interface that acts as a surrogate for an object representing a global element or attribute declaration. The real implementation of these declarations is available in the schema-aware version of the Saxon product.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetFingerprint()Get the name of the schema componentSchemaTypegetType()Get the simple or complex type associated with the element or attribute declarationbooleanisAbstract()Determine, in the case of an Element Declaration, whether the declaration is abstractbooleanisNillable()Determine, in the case of an Element Declaration, whether it is nillable.NodeTestmakeSchemaNodeTest()Create a NodeTest that implements the semantics of schema-element(name) or schema-attribute(name) applied to this element or attribute declaration.
-
-
-
Method Detail
-
getFingerprint
int getFingerprint()
Get the name of the schema component- Returns:
- the fingerprint of the component name
-
getType
SchemaType getType()
Get the simple or complex type associated with the element or attribute declaration- Returns:
- the simple or complex type
-
makeSchemaNodeTest
NodeTest makeSchemaNodeTest()
Create a NodeTest that implements the semantics of schema-element(name) or schema-attribute(name) applied to this element or attribute declaration.
-
isNillable
boolean isNillable()
Determine, in the case of an Element Declaration, whether it is nillable.
-
isAbstract
boolean isAbstract()
Determine, in the case of an Element Declaration, whether the declaration is abstract
-
-