Package com.saxonica.ee.schema
Class Notation
- java.lang.Object
-
- com.saxonica.ee.schema.SchemaStructure
-
- com.saxonica.ee.schema.Notation
-
- All Implemented Interfaces:
SerializableSchemaComponent
,UserSchemaComponent
,javax.xml.transform.SourceLocator
,Location
,SchemaComponent
,org.xml.sax.Locator
public class Notation extends SchemaStructure implements UserSchemaComponent, SerializableSchemaComponent
A Notation Declaration Schema Component
-
-
Constructor Summary
Constructors Constructor Description Notation(EnterpriseConfiguration config, javax.xml.transform.SourceLocator locator)
Creates a new Notation
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
elaborate(SchemaCompiler compiler)
Elaborate the schema component: after reloading a serialized schema component model, this expands the component with derived information needed during validation episodes.boolean
fixup(SchemaCompiler compiler)
Check references from this component to other componentsFunctionItem
getComponentAsFunction()
Get the schema component in the form of a function item.java.lang.String
getName()
Return the local name of this Notation.StructuredQName
getNotationName()
Get the notation namejava.lang.String
getNotationPublicId()
Get the public identifier of the notationjava.lang.String
getNotationSystemId()
Get the system identifier of the notationNamespaceUri
getTargetNamespace()
Return the target namespace of this Notationboolean
isSameDeclaration(Notation other)
Test whether this is the same notation as another.void
serialize(SchemaModelSerializer serializer)
Serialize the schema componentvoid
setNotationName(StructuredQName nameCode)
Set the name code of the notationvoid
setNotationPublicId(java.lang.String publicId)
Set the public identifier of the notationvoid
setNotationSystemId(java.lang.String systemId)
Set the system identifier of the notationboolean
validate(SchemaCompiler compiler)
Checks the validity of this Notation.-
Methods inherited from class com.saxonica.ee.schema.SchemaStructure
getColumnNumber, getConfiguration, getFixupStatus, getGeneratedId, getLineNumber, getPublicId, getRedefinitionLevel, getSchemaDocumentURI, getSystemId, getValidationStatus, hasSameLocation, isValidationNeeded, lookForCycles, makeXPathExpressionPropertyRecord, saveLocation, setConfiguration, setFixupStatus, setGeneratedId, setLineNumber, setLocator, setRedefinitionLevel, setSchemaDocumentURI, setSystemId, setValidationStatus
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.sf.saxon.type.SchemaComponent
getRedefinitionLevel, getValidationStatus
-
Methods inherited from interface com.saxonica.ee.schema.UserSchemaComponent
lookForCycles
-
-
-
-
Constructor Detail
-
Notation
public Notation(EnterpriseConfiguration config, javax.xml.transform.SourceLocator locator)
Creates a new Notation- Parameters:
config
- the Configuration to which this Notation belongslocator
- the location of the declaration in the schema document
-
-
Method Detail
-
setNotationName
public void setNotationName(StructuredQName nameCode)
Set the name code of the notation- Parameters:
nameCode
- the NamePool code for the notation name
-
getNotationName
public StructuredQName getNotationName()
Get the notation name- Returns:
- the name of the notation as a NamePool fingerprint. This combines the values of the {name} and {target namespace} properties in the schema component model.
-
setNotationSystemId
public void setNotationSystemId(java.lang.String systemId)
Set the system identifier of the notation- Parameters:
systemId
- the system identifier (possibly null)\
-
setNotationPublicId
public void setNotationPublicId(java.lang.String publicId)
Set the public identifier of the notation- Parameters:
publicId
- the public identifier (possibly null)\
-
getNotationSystemId
public java.lang.String getNotationSystemId()
Get the system identifier of the notation- Returns:
- the value of the {system identifier} property (possibly null).
-
getNotationPublicId
public java.lang.String getNotationPublicId()
Get the public identifier of the notation- Returns:
- the value of the {public identifier} property (possibly null)\
-
getName
public java.lang.String getName()
Return the local name of this Notation.- Returns:
- the value of the {local name} property of the Notation Declaration
-
getTargetNamespace
public NamespaceUri getTargetNamespace()
Return the target namespace of this Notation- Returns:
- the value of the {target namespace} property of the Notation Declaration
-
validate
public boolean validate(SchemaCompiler compiler)
Checks the validity of this Notation. Always returns true for this implementation.- Specified by:
validate
in interfaceUserSchemaComponent
- Overrides:
validate
in classSchemaStructure
- Parameters:
compiler
- the schema compiler- Returns:
- true when this Schema definition is valid, otherwise false.
-
fixup
public boolean fixup(SchemaCompiler compiler)
Check references from this component to other components- Specified by:
fixup
in interfaceUserSchemaComponent
- Overrides:
fixup
in classSchemaStructure
- Parameters:
compiler
- the schema compiler- Returns:
- true if all is well, false if errors found
-
isSameDeclaration
public boolean isSameDeclaration(Notation other)
Test whether this is the same notation as another. They are considered to be the same component if they are derived from the same definition in the original XML representation (which can happen when there are multiple includes of the same file)- Parameters:
other
- the notation declaration that we are comparing with- Returns:
- true if the two notation declarations are identical
-
elaborate
public void elaborate(SchemaCompiler compiler)
Elaborate the schema component: after reloading a serialized schema component model, this expands the component with derived information needed during validation episodes. The model is assumed to be valid.- Specified by:
elaborate
in interfaceUserSchemaComponent
- Overrides:
elaborate
in classSchemaStructure
- Parameters:
compiler
- The schema compiler
-
serialize
public void serialize(SchemaModelSerializer serializer) throws XPathException
Serialize the schema component- Specified by:
serialize
in interfaceSerializableSchemaComponent
- Parameters:
serializer
- the object responsible for performing the serialization- Throws:
XPathException
- if serialization fails
-
getComponentAsFunction
public FunctionItem getComponentAsFunction()
Description copied from interface:SchemaComponent
Get the schema component in the form of a function item. This allows schema information to be made visible to XSLT or XQuery code. The function makes available the contents of the schema component as defined in the XSD specification. The function takes a string as argument representing a property name, and returns the corresponding property of the schema component. There is also a property "class" which returns the kind of schema component, for example "Attribute Declaration".- Specified by:
getComponentAsFunction
in interfaceSchemaComponent
- Overrides:
getComponentAsFunction
in classSchemaStructure
- Returns:
- the schema component represented as a function from property names to property values.
-
-