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

com.themillhousegroup.scoup.traits.ElementTarget.scala Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.themillhousegroup.scoup.traits

import org.jsoup.nodes.Element
import org.jsoup.select.Elements

abstract trait Target[T] {
  val target: T
}

/** A trait that expects to be pimped onto a JSoup Element */
abstract trait ElementTarget extends Target[Element] {
}

/** A trait that expects to be pimped onto a JSoup Elements */
abstract trait ElementsTarget extends Target[Elements] {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy