Class NotNameClass

java.lang.Object
com.sun.msv.grammar.NameClass
com.sun.msv.grammar.NotNameClass
All Implemented Interfaces:
Serializable

public final class NotNameClass extends NameClass
NameClass that acts a not operator. Actually, A NotNameClass can be represented by using a DifferenceNameClass and AnyNameClass.
See Also:
  • Field Details

  • Constructor Details

    • NotNameClass

      public NotNameClass(NameClass child)
  • Method Details

    • accepts

      public boolean accepts(String namespaceURI, String localName)
      accepts a name if it is not accepted by the child name class.
      Specified by:
      accepts in class NameClass
      Parameters:
      namespaceURI - namespace URI to be tested. If this value equals to NAMESPACE_WILDCARD, implementation must assume that valid namespace is specified. this twist will be used for error diagnosis.
      localName - local part to be tested. As with namespaceURI, LOCALNAME_WILDCARD will acts as a wild card.
      Returns:
      true if the pair is accepted, false otherwise.
    • visit

      public Object visit(NameClassVisitor visitor)
      Description copied from class: NameClass
      visitor pattern support
      Specified by:
      visit in class NameClass
    • toString

      public String toString()
      Overrides:
      toString in class Object