All Downloads are FREE. Search and download functionalities are using the official Maven repository.

info.dollarx.ElementProperty.scala Maven / Gradle / Ivy

package info.dollarx


trait ElementProperty {

    def toXpath: String

    def or(p: ElementProperty): ElementProperty = {
      return new ElementPropertiesHelper.Or(this, p)
    }

    def and(prop: ElementProperty): ElementProperty = {
      return new ElementPropertiesHelper.And(this, prop)
    }

    def andNot(prop: ElementProperty): ElementProperty = {
      return and(new ElementPropertiesHelper.Not(prop))
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy