scala.xml.Utility Scala Examples
The following examples show how to use scala.xml.Utility.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
Example 1
Source File: DFDLDefineFormat.scala From incubator-daffodil with Apache License 2.0 | 6 votes |
package org.apache.daffodil.dsom import scala.xml.Node import scala.xml.Utility import org.apache.daffodil.xml.XMLUtils final class DFDLDefineFormat(node: Node, sd: SchemaDocument) extends DFDLDefiningAnnotation(node, sd) // Note: DefineFormat is not a format annotation { requiredEvaluationsAlways(formatAnnotation) // baseFormat was removed from the DFDL spec. Just use a ref from the // dfdl:format inside. // lazy val baseFormat = getAttributeOption("baseFormat") // nor baseFormat lazy val formatAnnotation = LV('formatAnnotation) { XMLUtils.removeComments(Utility.trim(node)) match { case <defineFormat>{ f @ <format>{ _* }</format> }</defineFormat> => new DFDLFormat(f, sd) case _ => schemaDefinitionError("dfdl:defineFormat does not contain a dfdl:format element.") } }.value }