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(): Unit
Called once upon completion of a parse, allowing one to perform any steps necessary to clean up the debugger runner.
- abstract def getCommand(): String
Called 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(): Unit
Called once at the beginning of a parse, allowing one to perform any initialization steps that may be necessary.
- abstract def lineOutput(line: String): Unit
Called 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
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.