See: Description
Interface | Description |
---|---|
AttributeDefaultValue |
Used to implement application-level (rather than schema-level)
attribute default values.
|
AttributeType |
Specification of services expected by a validating XML editor from an
element type constraining the value of an attribute.
|
Data |
Interface implemented by the value of an attribute or by the value of an
element whose content type is
ContentType.DATA . |
DataType |
Interface implemented by the data type of the value of attribute or by the
data type of the value of an element whose content type is
ContentType.DATA . |
Diagnostic |
Diagnostic (error message + invalid element) returned by
DocumentType.checkDocument(com.xmlmind.xml.doc.Document) . |
DocumentType |
Specification of the services expected from a schema (DTD, W3C XML Schema,
Relax NG, etc) by a validating XML editor.
|
ElementType |
Specification of services expected by a validating XML editor from an
element type constraining the content of an element.
|
Field |
A field is a name + a handle for a type.
|
IDDataType |
The data type of IDs.
|
Item |
Used to specify the presence of Text, Comment, ProcessingInstruction,
Element or Attribute information items in a Structure.
|
ListDataType |
A list data type.
|
NameClass |
Implemented by a set of names.
|
SubDocumentType |
Specification of the services expected from a schema (DTD, W3C XML Schema,
Relax NG, etc) by a validating XML editor.
|
UnparsedEntities |
Interface implemented by a set of unparsed entities.
|
Class | Description |
---|---|
AnyAttributeType |
A dummy implementation of AttributeType for which attributes
may have any value.
|
AnyData |
A dummy implementation of Data: it wraps a Data object around
the string representation of the actual data.
|
AnyDataType |
A dummy implementation of DataType which successfully parses
any string representation of the data.
|
AnyDocumentType |
A dummy implementation of DocumentType for which documents
may have any contents.
|
AnyElementType |
A dummy implementation of ElementType for which elements
may contain any attribute and any child node.
|
AnyField |
A dummy implementation of Field which may be used to represent any
attribute or child element.
|
AnyNameClass |
Implementation of NameClass which contains any name.
|
AttributeUtil |
Utilities making use of
AttributeDefaultValue and
PreserveSpaceDefaultValue . |
AutoDocumentType |
DocumentType based on the content of a document.
|
CommentItem |
Specifies the presence of a Comment information item in a Structure.
|
ContentTypeUtil |
Utilities related to
ContentType . |
DiagnosticImpl |
Implementation of Diagnostic.
|
DiagnosticImpl.DiagnosticComparator |
Compares two diagnostics, first by the order of their elements,
then by the severity of the diagnostic (most severe comes first),
then by their messages.
|
DiagnosticUtil |
Collection of utility functions (static methods) related to diagnostics
about the validity of an XML document.
|
DiagnosticUtil.DuplicateIDFilter |
This filter can be used to mangle duplicate IDs
resulting from the use of included elements.
|
DocumentationGeneratorBase |
The base class of DocumentationGenerators.
|
DocumentationGeneratorBase.PageInfo |
Information about an HTML page generated by a DocumentationGenerator.
|
DocumentTypeUtil |
A collection of convenience functions (static methods)
related to
DocumentType . |
DocumentTypeUtil.SortByInclusion |
Compare two elements using the
Constants.INCLUSION_PROPERTY
property of their ancestors. |
IDDataTypeImpl |
An implementation of IDDataType.
|
IdEntry |
Represents an ID which is used to identify an element.
|
IdRefItem |
Represents an element referencing IDs.
|
LaxElementType |
Implementation of ElementType which wraps an actual element type, relaxing
the constraints specified by the wrapped element type.
|
MultiDocumentType |
A compound DocumentType based on a main schema (e.g.
|
MultiDocumentType.ValidationRoot |
Information about the validation root of an element.
|
PreserveSpaceDefaultValue |
Uses property
Constants.PRESERVE_SPACE_ELEMENTS_PROPERTY
to implement an application-level default value for attribute
xml:space. |
ProcessingInstructionItem |
Specifies the presence of a ProcessingInstruction information item
in a Structure.
|
SingleDocumentType |
A implementation of DocumentType based on a single schema.
|
Structure |
Specifies an element content as a list of attribute fields and a list of
child node items.
|
TextItem |
Specifies the presence of a text information item in a Structure.
|
UncheckedUnparsedEntities |
Implementation of UnparsedEntities which contains an entity whatever is its
name.
|
XMLIDAttributeType |
The AttributeType of xml:id attributes.
|
Enum | Description |
---|---|
ContentType |
The content type of an
ElementType . |
Diagnostic.Severity |
The severity of found error.
|
SchemaKind |
The kind of a schema.
|
Exception | Description |
---|---|
DataFormatException |
Thrown by
DataType.parseData(java.lang.String, com.xmlmind.xml.name.PrefixToNamespace, com.xmlmind.xml.validate.UnparsedEntities) when this method cannot parse
specified string. |
This package also contains a number of useful implementations. For example
AutoDocumentType
, which may be used
for documents not conforming to any schema.