Package de.uka.ipd.sdq.dsexplore.facade
Interface IModule
-
- All Known Implementing Classes:
FCCModule
public interface IModuleAn extension module for PerOpteryx.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IAnalysisExtensiongetAnalysisExtension()Get the Analysis Extension for the module.ICreateExtensiongetCreateExtension()Get the Create Extension for the module.IDecodeExtensiongetDecodeExtension()Get the Decode Extension for the module.IProblemExtensiongetProblemExtension()Get the Problem Extension for the module.voidreset()Reset the module.
-
-
-
Method Detail
-
reset
void reset()
Reset the module.
-
getProblemExtension
IProblemExtension getProblemExtension()
Get the Problem Extension for the module.- Returns:
- the ProblemExtension
-
getCreateExtension
ICreateExtension getCreateExtension()
Get the Create Extension for the module.- Returns:
- the CreateExtension
-
getDecodeExtension
IDecodeExtension getDecodeExtension()
Get the Decode Extension for the module.- Returns:
- the DecodeExtension
-
getAnalysisExtension
IAnalysisExtension getAnalysisExtension()
Get the Analysis Extension for the module.- Returns:
- the AnalysisExtension
-
-