Class Interpreter
- java.lang.Object
-
- de.unirostock.sems.bives.algorithm.Interpreter
-
public abstract class Interpreter extends Object
- Author:
- Martin Scharm
-
-
Field Summary
Fields Modifier and Type Field Description protected SimpleConnectionManager
conMgmt
The connection manager.protected de.unirostock.sems.xmlutils.ds.TreeDocument
docA
The original document.protected de.unirostock.sems.xmlutils.ds.TreeDocument
docB
The modified document.
-
Constructor Summary
Constructors Constructor Description Interpreter(SimpleConnectionManager conMgmt, de.unirostock.sems.xmlutils.ds.TreeDocument docA, de.unirostock.sems.xmlutils.ds.TreeDocument docB)
Instantiates a new interpreter.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract void
interprete()
Interprete the connections!
-
-
-
Field Detail
-
conMgmt
protected SimpleConnectionManager conMgmt
The connection manager.
-
docA
protected de.unirostock.sems.xmlutils.ds.TreeDocument docA
The original document.
-
docB
protected de.unirostock.sems.xmlutils.ds.TreeDocument docB
The modified document.
-
-
Constructor Detail
-
Interpreter
public Interpreter(SimpleConnectionManager conMgmt, de.unirostock.sems.xmlutils.ds.TreeDocument docA, de.unirostock.sems.xmlutils.ds.TreeDocument docB)
Instantiates a new interpreter.- Parameters:
conMgmt
- the connection managerdocA
- the original documentdocB
- the modified document
-
-