public interface SourceCodeModifierPluginInterface
| Modifier and Type | Interface and Description |
|---|---|
static interface |
SourceCodeModifierPluginInterface.PluginResourceFiles
Additional files which are required to execute the plug-in, such as jar-files and configuration files.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
onExecute(java.lang.String javaClassName,
java.lang.String javaSourceCode,
java.util.List<java.lang.String> inputValues)
Called when the plug-in is executed.
|
void |
setLog(LogAdapterInterface log)
Called by environment when the instance is created.
|
void setLog(LogAdapterInterface log)
log - the log adapterjava.lang.String onExecute(java.lang.String javaClassName,
java.lang.String javaSourceCode,
java.util.List<java.lang.String> inputValues)
throws java.lang.Exception
javaClassName - the Java class name of the generated test programjavaSourceCode - the Java source code of the generated test programinputValues - the list of input valuesjava.lang.Exception - if an error occurs in the implementation of this method