public interface IModelAdapter<THost>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
runAlgo(THost host,
java.lang.String classname,
java.lang.String param)
Returns the result of the model processing given the visitor's classname and the given parameter string using the given host.
|
java.lang.String |
runFoldL(THost host,
java.lang.String accClassname)
Returns the result of the model processing given the
accumulator's classname and the given parameter string
using the given host with the FoldLAlgo visitor.
|
java.lang.String |
runFoldR(THost host,
java.lang.String accClassname)
Returns the result of the model processing given the
accumulator's classname and the given parameter string
using the given host with the FoldRAlgo visitor.
|
java.lang.String runAlgo(THost host, java.lang.String classname, java.lang.String param)
host - The host that runs the given visitorclassname - The visitor's class name to useparam - The input parameter to usejava.lang.String runFoldR(THost host, java.lang.String accClassname)
host - The host that runs the FoldRAlgo visitoraccClassname - The accumulator's class name to usejava.lang.String runFoldL(THost host, java.lang.String accClassname)
host - The host that runs the FoldLAlgo visitoraccClassname - The accumulator's class name to use