abstract class DebuggerRunner extends AnyRef
Abstract debugger runner, which can be implemented to create a custom debugger runner
- Alphabetic
- By Inheritance
- DebuggerRunner
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
-  new DebuggerRunner()
Abstract Value Members
-   abstract  def fini(): UnitCalled once upon completion of a parse, allowing one to perform any steps necessary to clean up the debugger runner. 
-   abstract  def getCommand(): StringCalled by Daffodil when there is a pause in parsing to determine what debugger actions should be taken. Called by Daffodil when there is a pause in parsing to determine what debugger actions should be taken. - returns
- a debugger command that tells the Daffodil debugger what step to take next. 
 - See also
- Daffodil Interactive Debugger - debugger commands 
 
-   abstract  def init(): UnitCalled once at the beginning of a parse, allowing one to perform any initialization steps that may be necessary. 
-   abstract  def lineOutput(line: String): UnitCalled by Daffodil when a debugger command has produce output. Called by Daffodil when a debugger command has produce output. This method is called once for every line produced by the Daffodil debugger. - line
- a single line of output generated by the Daffodil debugger 
 
Concrete Value Members
-   final  def !=(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def ##: Int- Definition Classes
- AnyRef → Any
 
-   final  def ==(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def asInstanceOf[T0]: T0- Definition Classes
- Any
 
-    def clone(): AnyRef- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
 
-   final  def eq(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-    def equals(arg0: AnyRef): Boolean- Definition Classes
- AnyRef → Any
 
-    def finalize(): Unit- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
 
-   final  def getClass(): Class[_ <: AnyRef]- Definition Classes
- AnyRef → Any
- Annotations
- @native()
 
-    def hashCode(): Int- Definition Classes
- AnyRef → Any
- Annotations
- @native()
 
-   final  def isInstanceOf[T0]: Boolean- Definition Classes
- Any
 
-   final  def ne(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-   final  def notify(): Unit- Definition Classes
- AnyRef
- Annotations
- @native()
 
-   final  def notifyAll(): Unit- Definition Classes
- AnyRef
- Annotations
- @native()
 
-   final  def synchronized[T0](arg0: => T0): T0- Definition Classes
- AnyRef
 
-    def toString(): String- Definition Classes
- AnyRef → Any
 
-   final  def wait(): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-   final  def wait(arg0: Long, arg1: Int): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-   final  def wait(arg0: Long): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
 
This is the documentation for the Apache Daffodil Scala API.
Package structure
org.apache.daffodil.sapi - Provides the classes necessary to compile DFDL schemas, parse and unparse files using the compiled objects, and retrieve results and parsing diagnostics
org.apache.daffodil.udf - Provides the classes necessary to create User Defined Functions to extend the DFDL expression language
org.apache.daffodil.runtime1.layers.api - Provides the classes necessary to create custom Layer extensions to DFDL.