Trait

at.logic.gapt.formats.xml.XMLParser

XMLSequentParser

Related Doc: package XMLParser

Permalink

trait XMLSequentParser extends XMLNodeParser

This trait parses XML elements <sequent>, <sequentlist> and <formulalist> into the respective objects.

Source
XMLParser.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. XMLSequentParser
  2. XMLNodeParser
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def getInput(): Node

    Permalink
    Definition Classes
    XMLNodeParser

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from XMLSequentParser to any2stringadd[XMLSequentParser] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (XMLSequentParser, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from XMLSequentParser to ArrowAssoc[XMLSequentParser] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def ensuring(cond: (XMLSequentParser) ⇒ Boolean, msg: ⇒ Any): XMLSequentParser

    Permalink
    Implicit information
    This member is added by an implicit conversion from XMLSequentParser to Ensuring[XMLSequentParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (XMLSequentParser) ⇒ Boolean): XMLSequentParser

    Permalink
    Implicit information
    This member is added by an implicit conversion from XMLSequentParser to Ensuring[XMLSequentParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): XMLSequentParser

    Permalink
    Implicit information
    This member is added by an implicit conversion from XMLSequentParser to Ensuring[XMLSequentParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): XMLSequentParser

    Permalink
    Implicit information
    This member is added by an implicit conversion from XMLSequentParser to Ensuring[XMLSequentParser] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from XMLSequentParser to StringFormat[XMLSequentParser] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. def getAxiomSet(n: Node): List[HOLSequent]

    Permalink

    If the Node n is an <axiomset> element, a List of Sequent objects corresponding to the Node is returned.

    If the Node n is an <axiomset> element, a List of Sequent objects corresponding to the Node is returned.

    returns

    A List of Sequent objects corresponding to n.

    Exceptions thrown

    ParsingException If n is not an <axiomset> node.

  17. def getAxiomSet(): List[HOLSequent]

    Permalink

    If the Node provided by XMLNodeParser is an <axiomset> element, a List of Sequent objects corresponding to the Node is returned.

    If the Node provided by XMLNodeParser is an <axiomset> element, a List of Sequent objects corresponding to the Node is returned.

    returns

    A List of Sequent objects corresponding to the Node provided by getInput().

    Exceptions thrown

    ParsingException If the Node provided by getInput() is not a <axiomset> Node.

  18. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  19. def getFormulaList(n: Node): List[HOLFormula]

    Permalink

    If the Node n is a <formulalist> element, a List of Formula objects corresponding to the Node is returned.

    If the Node n is a <formulalist> element, a List of Formula objects corresponding to the Node is returned.

    returns

    A List of Formula objects corresponding to n.

    Exceptions thrown

    ParsingException If n is not a <formulalist> node.

  20. def getFormulaList(): List[HOLFormula]

    Permalink

    If the Node provided by XMLNodeParser is a <formulalist> element, a List of Formula objects corresponding to the Node is returned.

    If the Node provided by XMLNodeParser is a <formulalist> element, a List of Formula objects corresponding to the Node is returned.

    returns

    A List of Formula objects corresponding to the Node provided by getInput().

    Exceptions thrown

    ParsingException If the Node provided by getInput() is not a <formulalist> Node.

  21. def getNamedSequentList(): (String, List[HOLSequent])

    Permalink
  22. def getNamedSequentList(n: Node): (String, List[HOLSequent])

    Permalink
  23. def getSequent(n: Node): HOLSequent

    Permalink

    If the Node n is a <sequent> element, a Sequent object corresponding to the Node is returned.

    If the Node n is a <sequent> element, a Sequent object corresponding to the Node is returned.

    returns

    A Sequent object corresponding to n.

    Exceptions thrown

    ParsingException If n is not a <sequent> node.

  24. def getSequent(): HOLSequent

    Permalink

    If the Node provided by XMLNodeParser is a <sequent> element, a Sequent object corresponding to the Node is returned.

    If the Node provided by XMLNodeParser is a <sequent> element, a Sequent object corresponding to the Node is returned.

    returns

    A Sequent object corresponding to the Node provided by getInput().

    Exceptions thrown

    ParsingException If the Node provided by getInput() is not a <sequent> Node.

  25. def getSequentList(n: Node): List[HOLSequent]

    Permalink

    If the Node n is a <sequentlist> element, a List of Sequent objects corresponding to the Node is returned.

    If the Node n is a <sequentlist> element, a List of Sequent objects corresponding to the Node is returned.

    returns

    A List of Sequent objects corresponding to n.

    Exceptions thrown

    ParsingException If n is not a <sequentlist> node.

  26. def getSequentList(): List[HOLSequent]

    Permalink

    If the Node provided by XMLNodeParser is a <sequentlist> element, a List of Sequent objects corresponding to the Node is returned.

    If the Node provided by XMLNodeParser is a <sequentlist> element, a List of Sequent objects corresponding to the Node is returned.

    returns

    A List of Sequent objects corresponding to the Node provided by getInput().

    Exceptions thrown

    ParsingException If the Node provided by getInput() is not a <sequentlist> Node.

  27. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  28. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  29. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  32. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  33. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def [B](y: B): (XMLSequentParser, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from XMLSequentParser to ArrowAssoc[XMLSequentParser] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from XMLNodeParser

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from XMLSequentParser to any2stringadd[XMLSequentParser]

Inherited by implicit conversion StringFormat from XMLSequentParser to StringFormat[XMLSequentParser]

Inherited by implicit conversion Ensuring from XMLSequentParser to Ensuring[XMLSequentParser]

Inherited by implicit conversion ArrowAssoc from XMLSequentParser to ArrowAssoc[XMLSequentParser]

Ungrouped