Package com.e1c.g5.v8.dt.check.qfix
Interface IFixSession
-
public interface IFixSession
Provides a single point access to the shared data of the fix session (like data access, etc)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IBmModelManager
getBmModelManager()
Provides theIBmModelManager
IDtProject
getDtProject()
Provides the DT projectIBmObject
getModelObject(long targetObjectId)
Provides the model object by object IDModule
getModule(org.eclipse.emf.common.util.URI targetModuleUri)
Provides the module by itsURI
-
-
-
Method Detail
-
getModelObject
IBmObject getModelObject(long targetObjectId)
Provides the model object by object ID- Parameters:
targetObjectId
- object id- Returns:
IBmObject
, can benull
-
getModule
Module getModule(org.eclipse.emf.common.util.URI targetModuleUri)
Provides the module by itsURI
- Parameters:
targetModuleUri
- module URI, cannot benull
- Returns:
- module, can be
null
-
getDtProject
IDtProject getDtProject()
Provides the DT project- Returns:
- DT project, nevr
null
-
getBmModelManager
IBmModelManager getBmModelManager()
Provides theIBmModelManager
- Returns:
- the
IBmModelManager
, nevernull
-
-