Monitorable an array of target framework modules to loading automatically.
Monitorable an array of favorite component data.
Monitorable an array of IModulePackageInfo.
Return essential module package names
module package names which are required essentially to run DART-Platform.
Return essential shortcut's module package names
module package names which are essentially registered as shortcut.
Query installed framework module packages.
An array of FrameworkModulePackageInfo
Call to retrieve an installed module package that matched with the package name. This value cannot be null.
The package name of the desired module package.
IModulePackageInfo object containing information about the module package, or null if there are none.
Call to retrieve all installed module packages.
Return array of IModulePackageInfo objects containing information about the module package, or null if there are none.
Call to retrieve installed module packages that matched with the module type.
The module type of the desired module package. If it is null or not defined, all installed module packages are retrieved.
Return array of IModulePackageInfo objects containing information about the module package, or null if there are none.
Install the given module package file or data. If already module package which has same package name has been installed, then the operation will be failed. This operation will be failed as below situation:
A .dm file path or data of the module package to install.
A name of a requested module package.
Additional options (PackageInstallOptions).
IModulePackageInfo object after installation the module successfully, otherwise null.
Install the given module package file or data. If already module package which has same package name has been installed, then system will try to update the module package.
A .dm file path or data of the module package to install.
A name of a requested module package.
Additional options (PackageInstallOrUpdateOptions).
IModulePackageInfo object after installation the module successfully, otherwise null.
Get whether the given module package is installed.
The package name of the desired module package.
Whether the given module package is installed.
Load a framework module.
A desired framework module package name to load.
A desired module's subtype Manifest.FRAMEWORK_SUB_TYPE
status operation status FrameworkModuleStatus uniqueId module handle uniqueId.
Call to query module database components that matched with the Message.
The message of the desired module package.
Return array of IModuleResolveInfo objects containing information about the module package, or null if there are none.
Call to query module screen components that matched with the Message.
The message of the desired module package.
Return array of IModuleResolveInfo objects containing information about the module package, or null if there are none.
Call to query module service components that matched with the Message.
The message of the desired module package.
Return array of IModuleResolveInfo objects containing information about the module package, or null if there are none.
Register a FrameworkModuleStateListener to be notified of framework module's state changes.
The FrameworkModuleStateListener to be registered.
Sets whether to load a framework package automatically.
Whether to load the packageName automatically.
A desired framework module package name to load.
A desired framework module's subtype Manifest.FRAMEWORK_SUB_TYPE. If subType is null and {@link enabled} is false, all subTypes will be disabled.
Return
Set favorite state of the component.
The package name of the desired module package.
The component id of the desired module package.
True if the component is set as favorite.
Set a staring module component. When Dart-Platform booting is complete, the component registered as a starting component is automatically executed.
The package name of the desired module package.
optional information about the component of the starting module package.
True if you want to set the module package as starting module.
Return true if the request has been operated successfully, otherwise false.
Uninstall the given module package name. If there is no module package which is matched with the package name, then the operation will be failed.
A package name of the module package to uninstall.
A name of a requested module package.
Additional options (PackageUninstallOptions).
Return true if the package has been uninstalled successfully, otherwise false.
Unload a framework module.
The unique id of module to be unloaded.
An operation status FrameworkModuleStatus
Unregisters a FrameworkModuleStateListener you previously registered using registerFrameworkModuleStateListener.
The FrameworkModuleStateListener to be unregistered.
Update the given module package file or data. This operation will be failed as below situation:
A .dm file path or data of the module package to install.
A name of a requested module package.
Additional options (PackageUpdateOptions).
IModulePackageInfo object after installation the module successfully, otherwise null.
Generated using TypeDoc
System manager for managing module packages. Through this you can retrieve various kinds of information related to the module packages that are currently installed on the DART-Platform.
1