in src/main/scala/pa/package.scala [18:25]
def \@(attributeName: String): String = (node \ ("@" + attributeName)).text
def \@@(attributeName: String): Option[String] = {
(node \ ("@" + attributeName)).text match {
case s if s.length > 0 => Some(s)
case _ => None
}
}