com.togethersoft.openapi.sci
Interface SciModelPart
- public interface SciModelPart
Defines constants used to identify the kind of SciPackage.
A package can be one of the following:
-
Imported package - the package is imported by the model (see
IMPORT).
-
Component package - contains the components (see COMPONENT).
-
Model package - contains the model's data (see MODEL).
There is a method getModelPart in SciPackage
which enables you to determine the kind of package.
The constants in this interface are used in the
SciModel.rootPackages(String) method.
- Author:
- TogetherSoft
- Since: Together 3.0
- See Also: SciPackage.getModelPart()
| Field Summary |
final static String | COMPONENT Component package - contains components (useful classes and so on, that can be used in the user's models). |
final static String | IMPORT Imported package. |
final static String | MODEL Model package - contains the model's data. |
COMPONENT
public final static String COMPONENT
- Component package - contains components (useful classes and so on, that can be used in the user's models).
IMPORT
public final static String IMPORT
- Imported package.
The imported packages are subpackages of the
packages specified in the
Search/Classpath tab in the Project Properties dialog (Advanced mode)
or root packages from that tab themselves.
MODEL
public final static String MODEL
- Model package - contains the model's data.
The model packages are subpackages of the
packages specified on the
Project Paths tab in the Project Properties dialog (Advanced mode)
or root packages from that tab themselves.- See Also:
- SciModel.rootPackages(java.lang.String)
to Class java.lang.String- Model package - contains the model's data.
The model packages are subpackages of the
packages specified on the
Project Paths tab in the Project Properties dialog (Advanced mode)
or root packages from that tab themselves.- see SciModel#rootPackages(String)
to Class java.lang.String
- Imported package.
The imported packages are subpackages of the
packages specified in the
Search/Classpath tab in the Project Properties dialog (Advanced mode)
or root packages from that tab themselves.
to Class java.lang.String
- Component package - contains components (useful classes and so on, that can be used in the user's models).