public interface OdsxSaveMeasurementInterface extends FwkControllerInterface, FwkThreadInterface
AUTHOR, BUILDNR, COMPANY, COPYRIGHT, DATE_FORMAT, DEFAULT_ICON, DESCRIPTION, INTERNET, LARGE_ICON, LARGE_KEY_EXT, LARGE_OPAQUE_ICON, LARGE_OPAQUE_KEY_EXT, OPAQUE_ICON, OPAQUE_KEY_EXT, RCS_DATE_FORMAT, SUPPORT_EMAIL, TITLE_NAME
Modifier and Type | Method and Description |
---|---|
InstanceElement |
saveMeasurement(java.lang.String path)
Save a column array under newly created measurement instance.
|
InstanceElement |
saveMeasurement(java.lang.String path,
FwkArrayInterface arr)
Save a column array under newly created measurement instance.
|
InstanceElement |
saveMeasurement(java.lang.String path,
java.lang.String meaName)
Save a column array under newly created measurement instance.
|
InstanceElement |
saveMeasurement(java.lang.String path,
java.lang.String meaName,
FwkArrayInterface arr)
Save a column array under newly created measurement instance.
|
destroyController
getPriority, isInterrupted, setPriority, start, stop
getAuthor, getBuild, getClassName, getCompany, getCompanyInternetAddress, getCopyright, getCreationDate, getCreationDate, getDateFormatString, getDescription, getIcon, getIcon, getIconKey, getIconKey, getName, getPresentationString, getPresentationString, getSupportEMail, getTitle, getTitleName, setAuthor, setBuild, setClassName, setCompany, setCompanyInternetAddress, setCopyright, setCreationDate, setCreationDate, setDateFormatString, setDescription, setDescriptor, setIcon, setIcon, setIconKey, setIconKey, setName, setSupportEMail, setTitleName
getVersion, release
InstanceElement saveMeasurement(java.lang.String path) throws FwkException
path
- The ASAM path of the parent instance or a sister measurement.
If a measurement instance is specified, the method generates
all relation set by the given measurement instance.
The columns to be saved should be loaded from DataBus.FwkException
- if operation could not be executed.InstanceElement saveMeasurement(java.lang.String path, java.lang.String meaName) throws FwkException
path
- The ASAM path of the parent instance or a sister measurement.
If a measurement instance is specified, the method generates
all relation set by the given measurement instance.
The columns to be saved should be loaded from DataBus.meaName
- The name of the new measurement. If this parameter is null
the object itself must organize the name (use, file or property...)FwkException
- if operation could not be executed.InstanceElement saveMeasurement(java.lang.String path, FwkArrayInterface arr) throws FwkException
path
- The ASAM path of the parent instance or a sister measurement.
If a measurement instance is specified, the method generates
all relation set by the given measurement instance.
The columns to be saved should be loaded from DataBus.arr
- The array containing the ColumnAccessInterface object to
save as local columns.FwkException
- if operation could not be executed.InstanceElement saveMeasurement(java.lang.String path, java.lang.String meaName, FwkArrayInterface arr) throws FwkException
path
- The ASAM path of the parent instance or a sister measurement.
If a measurement instance is specified, the method generates
all relation set by the given measurement instance.meaName
- The name of the new measurement. If this parameter is null
the object itself must organize the name (use, file or property...)arr
- The array containing the ColumnAccessInterface object to
save as local columns.FwkException
- if operation could not be executed.