Package de.uka.ipd.sdq.dsexplore.facade
Interface IModule
-
- All Known Implementing Classes:
FCCModule
public interface IModule
An extension module for PerOpteryx.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IAnalysisExtension
getAnalysisExtension()
Get the Analysis Extension for the module.ICreateExtension
getCreateExtension()
Get the Create Extension for the module.IDecodeExtension
getDecodeExtension()
Get the Decode Extension for the module.IProblemExtension
getProblemExtension()
Get the Problem Extension for the module.void
reset()
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
-
-