Package de.uka.ipd.sdq.dsexplore.facade
Interface IModule
- All Known Implementing Classes:
FCCModule
public interface IModule
An extension module for PerOpteryx.
-
Method Summary
Modifier and TypeMethodDescriptionGet the Analysis Extension for the module.Get the Create Extension for the module.Get the Decode Extension for the module.Get the Problem Extension for the module.void
reset()
Reset the module.
-
Method Details
-
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
-