Interface IGenericSimulinkModel
-
- All Superinterfaces:
AutoCloseable
,IModel
- All Known Implementing Classes:
AbstractSimulinkModel
,SimulinkDictionaryModel
,SimulinkDictionaryModelInEclipse
,SimulinkModel
,SimulinkModelInEclipse
,SimulinkRequirementModel
,SimulinkRequirementModelInEclipse
public interface IGenericSimulinkModel extends IModel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addPath(File path)
void
addPath(String path)
MatlabEngine
getEngine()
String
getEngineJarPath()
File
getFile()
String
getLibraryPath()
String
getMatlabPath()
List<String>
getPaths()
File
getProject()
File
getWorkingDir()
Boolean
isCloseOnDispose()
Boolean
isOpenOnLoad()
boolean
isTrackApi()
Boolean
isUseCurrentProject()
void
setCloseOnDispose(Boolean closeOnDispose)
void
setEngineJarPath(String engineJarPath)
void
setFile(File file)
void
setLibraryPath(String libraryPath)
void
setMatlabPath(String matlabPath)
void
setOpenOnLoad(Boolean openOnLoad)
void
setProject(String simulinkProject)
void
setTrackApi(boolean track)
void
setUseCurrentProject(Boolean currentSimulinkProject)
void
setWorkingDir(File workingDir)
-
Methods inherited from interface org.eclipse.epsilon.eol.models.IModel
allContents, close, createInstance, createInstance, deleteElement, dispose, getAliases, getAllOfKind, getAllOfType, getElementById, getElementId, getEnumerationValue, getFullyQualifiedTypeNameOf, getMetamodel, getName, getPropertyGetter, getPropertySetter, getTransactionSupport, getTypeNameOf, getTypeOf, hasType, isInstantiable, isModelElement, isOfKind, isOfType, isPropertySet, isReadOnLoad, isStoredOnDisposal, knowsAboutProperty, load, load, load, load, owns, setElementId, setName, setReadOnLoad, setStoredOnDisposal, store, store
-
-
-
-
Method Detail
-
setEngineJarPath
void setEngineJarPath(String engineJarPath)
-
getEngineJarPath
String getEngineJarPath()
-
setLibraryPath
void setLibraryPath(String libraryPath)
-
getLibraryPath
String getLibraryPath()
-
setMatlabPath
void setMatlabPath(String matlabPath)
-
getMatlabPath
String getMatlabPath()
-
getEngine
MatlabEngine getEngine()
-
setFile
void setFile(File file)
-
getFile
File getFile()
-
getProject
File getProject()
-
setProject
void setProject(String simulinkProject)
-
isUseCurrentProject
Boolean isUseCurrentProject()
-
setUseCurrentProject
void setUseCurrentProject(Boolean currentSimulinkProject)
-
addPath
void addPath(File path)
-
addPath
void addPath(String path)
-
setWorkingDir
void setWorkingDir(File workingDir)
-
getWorkingDir
File getWorkingDir()
-
setCloseOnDispose
void setCloseOnDispose(Boolean closeOnDispose)
-
setOpenOnLoad
void setOpenOnLoad(Boolean openOnLoad)
-
isCloseOnDispose
Boolean isCloseOnDispose()
-
isOpenOnLoad
Boolean isOpenOnLoad()
-
setTrackApi
void setTrackApi(boolean track)
-
isTrackApi
boolean isTrackApi()
-
-