Mobile Tools for Java
Release 1.0

Uses of Interface
org.eclipse.mtj.core.sdk.device.IDevice

Packages that use IDevice
org.eclipse.mtj.core.project.runtime This package provides an API for managing MTJ project runtime configurations. 
org.eclipse.mtj.core.project.runtime.event This package provides all events related classes and interfaces associated to the MTJRuntime API. 
org.eclipse.mtj.core.sdk This package provides an API for managing the SDK definition and importing. 
org.eclipse.mtj.core.sdk.device This package provides an API for managing the device definition and importing. 
org.eclipse.mtj.core.sdk.device.midp This package provides an API for managing MIDP devices. 
org.eclipse.mtj.core.symbol This package provides an API for managing all symbols that are used during the preprocessing operations. 
org.eclipse.mtj.ui.editors.device This package provides the user interface functionality for editing devices. 
 

Uses of IDevice in org.eclipse.mtj.core.project.runtime
 

Methods in org.eclipse.mtj.core.project.runtime that return IDevice
 IDevice MTJRuntime.getDevice()
           
 

Methods in org.eclipse.mtj.core.project.runtime with parameters of type IDevice
 void MTJRuntime.setDevice(IDevice device)
           
 

Uses of IDevice in org.eclipse.mtj.core.project.runtime.event
 

Methods in org.eclipse.mtj.core.project.runtime.event that return IDevice
 IDevice MTJRuntimeDeviceChangeEvent.getNewDevice()
           
 IDevice MTJRuntimeDeviceChangeEvent.getOldDevice()
           
 

Methods in org.eclipse.mtj.core.project.runtime.event with parameters of type IDevice
 void MTJRuntimeDeviceChangeEvent.setNewDevice(IDevice newDevice)
           
 void MTJRuntimeDeviceChangeEvent.setOldDevice(IDevice oldDevice)
           
 

Constructors in org.eclipse.mtj.core.project.runtime.event with parameters of type IDevice
MTJRuntimeDeviceChangeEvent(MTJRuntime source, IDevice oldDevice, IDevice newDevice)
          Constructor.
 

Uses of IDevice in org.eclipse.mtj.core.sdk
 

Methods in org.eclipse.mtj.core.sdk that return types with arguments of type IDevice
 List<IDevice> ISDK.getDeviceList()
          Return the fully configured device instances available in this SDK.
 

Uses of IDevice in org.eclipse.mtj.core.sdk.device
 

Methods in org.eclipse.mtj.core.sdk.device that return IDevice
 IDevice IDeviceRegistry.getDefaultDevice()
          Return the default device or null if one is not specified.
 IDevice IDeviceRegistry.getDevice(String groupName, String deviceName)
          Return the device with the specified key or null if no such device is found in the registry.
 

Methods in org.eclipse.mtj.core.sdk.device that return types with arguments of type IDevice
 List<IDevice> IDeviceFinder.findDevices(File directory, IProgressMonitor monitor)
          Return all devices that can be found in the specified directory or any sub-directories.
 List<IDevice> IDeviceFinder.findDevices(String deviceImporterID, File directory, IProgressMonitor monitor)
          Return all devices that can be found in the specified directory or any sub-directories.
 List<IDevice> IDeviceRegistry.getAllDevices()
          Return a list of all of the devices in the registry.
 List<IDevice> IDeviceRegistry.getDevices(String groupName)
          Return the devices found in the specified group or null if the specified group cannot be found.
 List<IDevice> IDeviceImporter.importDevices(File directory, IProgressMonitor monitor)
          Return the fully configured device instances found in the specified directory or null if no devices are recognized by this importer in this directory.
 

Methods in org.eclipse.mtj.core.sdk.device with parameters of type IDevice
 void IDeviceRegistry.addDevice(IDevice device)
          Add a new device instance to the device registry.
 void IDeviceRegistryListener.deviceAdded(IDevice device)
          The specified device has been added to the registry.
 void IDeviceRegistryListener.deviceRemoved(IDevice device)
          The specified device has been removed to the registry.
 void IDeviceRegistry.removeDevice(IDevice device)
          Remove the specified device from the registry if it exists.
 void IDeviceRegistry.setDefaultDevice(IDevice device)
          Set the default device.
 

Uses of IDevice in org.eclipse.mtj.core.sdk.device.midp
 

Subinterfaces of IDevice in org.eclipse.mtj.core.sdk.device.midp
 interface IMIDPDevice
          The device interface specifies the representation of an emulated MIDP device.
 

Uses of IDevice in org.eclipse.mtj.core.symbol
 

Methods in org.eclipse.mtj.core.symbol with parameters of type IDevice
 ISymbolSet ISymbolSetFactory.createSymbolSetFromDevice(IDevice device)
          Create SymbolSet from device.
 

Uses of IDevice in org.eclipse.mtj.ui.editors.device
 

Methods in org.eclipse.mtj.ui.editors.device with parameters of type IDevice
 void DeviceEditorDialog.setDevice(IDevice device)
          Set the device to be edited.
 


Mobile Tools for Java
Release 1.0