Packages

object General extends AbstractSelector with scala.Product with Serializable

Source
DSL.scala
Linear Supertypes
Serializable, Serializable, scala.Product, Equals, AbstractSelector, Selector, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. General
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AbstractSelector
  7. Selector
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type AbstractType = General
    Definition Classes
    GeneralAbstractSelector

Value Members

  1. def &&(that: Selector): AndSelector
    Definition Classes
    Selector
  2. def *(that: Model): Model
    Definition Classes
    Selector
  3. def =*=(that: Elem): Boolean

    * old to be removed def isTypeMatch(that: HasType): Boolean = this.isInstanceOf[TypeObject] && that.myType == this def selects(that: Selector): Boolean = ( this == that ) || ( that match { case Head(e,l) if this.isInstanceOf[HeadType] => HeadType(e.myType, l) == this case Relation(e,l,t) if this.isInstanceOf[HeadType] => HeadType(e.myType, l) == this case ht: HasType => isTypeMatch(ht) case _ => false } ) **---

    * old to be removed def isTypeMatch(that: HasType): Boolean = this.isInstanceOf[TypeObject] && that.myType == this def selects(that: Selector): Boolean = ( this == that ) || ( that match { case Head(e,l) if this.isInstanceOf[HeadType] => HeadType(e.myType, l) == this case Relation(e,l,t) if this.isInstanceOf[HeadType] => HeadType(e.myType, l) == this case ht: HasType => isTypeMatch(ht) case _ => false } ) **---

    Definition Classes
    Selector
  4. def isMatch(that: Elem): Boolean
    Definition Classes
    Selector
  5. def restrict(that: Model): Model
    Definition Classes
    Selector
  6. def unary_!: NotSelector
    Definition Classes
    Selector
  7. def ||(that: Selector): OrSelector
    Definition Classes
    Selector