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

scala.coursier.util.SaxHandler.scala Maven / Gradle / Ivy

There is a newer version: 2.1.13
Show newest version
package coursier.util

abstract class SaxHandler {
  def startElement(tagName: String): Unit // TODO attributes
  def characters(ch: Array[Char], start: Int, length: Int): Unit
  def endElement(tagName: String): Unit
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy