Package net.sf.tweety.plugin
Class PluginOutput
- java.lang.Object
-
- net.sf.tweety.plugin.PluginOutput
-
public class PluginOutput extends Object
This class provides the output for each plugin to be used in the CLI. Only meant for command line output, not for writing into output files (those are handled within each project as well as parsing input files)- Author:
- Bastian Wolf
-
-
Constructor Summary
Constructors Constructor Description PluginOutput()PluginOutput(ArrayList<OutputField> fields)
-
Method Summary
Modifier and Type Method Description voidaddField(String description, String value)voidaddField(OutputField field)StringgetOutput()voidmergeFields()
-
-
-
Constructor Detail
-
PluginOutput
public PluginOutput()
-
PluginOutput
public PluginOutput(ArrayList<OutputField> fields)
-
-
Method Detail
-
addField
public void addField(OutputField field)
-
mergeFields
public void mergeFields()
-
getOutput
public String getOutput()
-
-