Class SupervisionParameters
- java.lang.Object
-
- org.processmining.specpp.config.parameters.SupervisionParameters
-
- All Implemented Interfaces:
Parameters,PrettyPrintable,ProperlyPrintable
public class SupervisionParameters extends java.lang.Object implements Parameters
-
-
Constructor Summary
Constructors Constructor Description SupervisionParameters(boolean useConsole, boolean useFiles)SupervisionParameters(boolean useConsole, boolean useFiles, java.util.Set<java.lang.Class<?>> classesToInstrument)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Set<java.lang.Class<?>>getClassesToInstrument()static SupervisionParametersgetDefault()static SupervisionParametersinstrumentAll(boolean useConsole, boolean useFiles)static SupervisionParametersinstrumentNone(boolean useConsole, boolean useFiles)booleanisUseConsole()booleanisUseUseFiles()booleanshouldClassBeInstrumented(java.lang.Class<?> oClass)booleanshouldObjBeInstrumented(java.lang.Object o)java.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.processmining.specpp.config.parameters.Parameters
toPrettyString
-
-
-
-
Method Detail
-
instrumentNone
public static SupervisionParameters instrumentNone(boolean useConsole, boolean useFiles)
-
instrumentAll
public static SupervisionParameters instrumentAll(boolean useConsole, boolean useFiles)
-
getDefault
public static SupervisionParameters getDefault()
-
getClassesToInstrument
public java.util.Set<java.lang.Class<?>> getClassesToInstrument()
-
shouldObjBeInstrumented
public boolean shouldObjBeInstrumented(java.lang.Object o)
-
shouldClassBeInstrumented
public boolean shouldClassBeInstrumented(java.lang.Class<?> oClass)
-
isUseConsole
public boolean isUseConsole()
-
isUseUseFiles
public boolean isUseUseFiles()
-
toString
public java.lang.String toString()
- Specified by:
toStringin interfaceProperlyPrintable- Overrides:
toStringin classjava.lang.Object
-
-