Mobile Tools for Java
Release 1.0

Uses of Class
org.eclipse.mtj.core.persistence.PersistenceException

Packages that use PersistenceException
org.eclipse.mtj.core.persistence This package provides and API for managing persistence. 
org.eclipse.mtj.core.project.runtime This package provides an API for managing MTJ project runtime configurations. 
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.library.api This package provides an API for managing the API provided by an ILibrary instance. 
org.eclipse.mtj.core.symbol This package provides an API for managing all symbols that are used during the preprocessing operations. 
 

Uses of PersistenceException in org.eclipse.mtj.core.persistence
 

Methods in org.eclipse.mtj.core.persistence that throw PersistenceException
 boolean IPersistenceProvider.loadBoolean(String name)
          Load the named boolean value.
 int IPersistenceProvider.loadInteger(String name)
          Load the named integer value.
 IPersistable IPersistenceProvider.loadPersistable(String name)
          Load the named persistable object value.
 Properties IPersistenceProvider.loadProperties(String name)
          Load the named properties object value.
 Object IPersistenceProvider.loadReference(String name)
          Load the referenced object value or null if the object cannot be resolved.
 String IPersistenceProvider.loadString(String name)
          Load the named string value.
 void IPersistable.loadUsing(IPersistenceProvider persistenceProvider)
          Load the state of this object using the specified persistence state information.
 void IPersistenceProvider.storeBoolean(String name, boolean debugServer)
          Store the boolean value using the specified name.
 void IPersistenceProvider.storeInteger(String name, int value)
          Store the integer value using the specified name.
 void IPersistenceProvider.storePersistable(String name, IPersistable value)
          Store the persistable object value using the specified name.
 void IPersistenceProvider.storeProperties(String name, Properties deviceProperties)
          Store the properties object value using the specified name.
 void IPersistenceProvider.storeReference(String name, Object referenceObject)
          Store a reference to the specified object using the specified name.
 void IPersistenceProvider.storeString(String name, String string)
          Store the string value using the specified name.
 void IPersistable.storeUsing(IPersistenceProvider persistenceProvider)
          Save the state of this object using the specified persistence state information.
 

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

Constructors in org.eclipse.mtj.core.project.runtime that throw PersistenceException
MTJRuntime(Element configElement)
          Construct Configuration from meta data XML file.
MTJRuntimeList(Element configsElement)
          Construct Configuration from meta data XML file.
 

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

Methods in org.eclipse.mtj.core.sdk.device that throw PersistenceException
 void IDeviceRegistry.addDevice(IDevice device)
          Add a new device instance to the device registry.
 void IDeviceRegistry.clear()
          Clear the registry of all entries.
 List<IDevice> IDeviceRegistry.getAllDevices()
          Return a list of all of the devices in the registry.
 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.
 int IDeviceRegistry.getDeviceCount()
          Return the number of devices registered.
 List<String> IDeviceRegistry.getDeviceGroups()
          Return the registered device groups.
 List<IDevice> IDeviceRegistry.getDevices(String groupName)
          Return the devices found in the specified group or null if the specified group cannot be found.
 void IDeviceRegistry.load()
          Load the contents of the device registry from the storage file in the plug-in state location.
 void IDeviceRegistry.removeDevice(IDevice device)
          Remove the specified device from the registry if it exists.
 void IDeviceRegistry.store()
          Store out the contents of the registry into the standard device storage file in the plug-in state location.
 

Uses of PersistenceException in org.eclipse.mtj.core.sdk.device.midp.library.api
 

Methods in org.eclipse.mtj.core.sdk.device.midp.library.api that throw PersistenceException
 void API.loadUsing(IPersistenceProvider persistenceProvider)
           
 void API.storeUsing(IPersistenceProvider persistenceProvider)
           
 

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

Methods in org.eclipse.mtj.core.symbol that throw PersistenceException
 void ISymbolSetRegistry.addSymbolSet(ISymbolSet definitions)
          Add the specified SymbolDefinitions object to the registry of definitions.
 void ISymbolSetRegistry.addSymbolSet(List<ISymbolSet> ss)
          Add an array of symbol sets to the registry
 void ISymbolSetRegistry.clear()
          Clear all of the registered SymbolDefinitions objects.
 String[] ISymbolSetRegistry.getAllSymbolSetNames()
          Return all of the definition names registered.
 ISymbolSet[] ISymbolSetRegistry.getAllSymbolSets()
          Return all of the definitions registered.
 ISymbolSet ISymbolSetRegistry.getSymbolSet(String name)
          Return the SymbolDefinitions instance registered with the specified name or null if the object cannot be found.
 void ISymbolSetRegistry.load()
          Load the contents of the symbol definitions registry from the storage file in the plug-in state location.
 void ISymbolSetRegistry.store()
          Store out the contents of the registry into the standard device storage file in the plug-in state location.
 


Mobile Tools for Java
Release 1.0