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

com.github.loyada.dollarx.ElementProperty.scala Maven / Gradle / Ivy

There is a newer version: 0.35
Show newest version
package com.github.loyada.dollarx

/**
  * Created by danny on 2/6/16.
  */
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