Class LaxValidator

All Implemented Interfaces:
Result, Receiver
Direct Known Subclasses:
AnyTypeValidator

public class LaxValidator extends ContentValidator
This class performs lax validation on an element.
  • Constructor Details

    • LaxValidator

      public LaxValidator(Receiver next)
  • Method Details

    • getSchemaType

      public SchemaType getSchemaType()
      Get the schema type against which we are validating, if any
      Specified by:
      getSchemaType in class ContentValidator
      Returns:
      the schema type that this validator is validating against, or null
    • startElement

      public void startElement(NodeName elemName, SchemaType type, AttributeMap attributes, NamespaceMap namespaces, Location location, int properties) throws XPathException
      Output element start tag for a child element
      Specified by:
      startElement in interface Receiver
      Overrides:
      startElement in class ContentValidator
      Parameters:
      elemName - the name of the element.
      type - the type annotation of the element.
      attributes - the attributes of this element
      namespaces - the in-scope namespaces of this element: generally this is all the in-scope namespaces, without relying on inheriting namespaces from parent elements
      location - an object providing information about the module, line, and column where the node originated
      properties - bit-significant properties of the element node. If there are no relevant properties, zero is supplied. The definitions of the bits are in class ReceiverOption
      Throws:
      XPathException - if an error occurs
    • getChildValidator

      protected ContentValidator getChildValidator()
      Description copied from class: ContentValidator
      Get a validator to handle the children of the current element. This is called immediately on return from the startElement call that starts this element.
      Specified by:
      getChildValidator in class ContentValidator
      Returns:
      the validator to be used to handle the children
    • processAttribute

      protected AttributeInfo processAttribute(AttributeInfo att) throws XPathException
      Lax-validate an attribute
      Parameters:
      att - the attribute to be validated
      Throws:
      XPathException
    • characters

      public void characters(UnicodeString chars, Location locationId, int properties) throws XPathException
      Character data
      Specified by:
      characters in interface Receiver
      Overrides:
      characters in class ProxyReceiver
      Parameters:
      chars - The characters
      locationId - provides information such as line number and system ID.
      properties - Bit significant value. The following bits are defined:
      DISABLE_ESCAPING
      Disable escaping for this text node
      USE_CDATA
      Output as a CDATA section
      Throws:
      XPathException - if an error occurs