Uses of Interface
eclipseme.core.model.IPlatformComponent

Packages that use IPlatformComponent
eclipseme.core.model   
eclipseme.core.model.impl   
 

Uses of IPlatformComponent in eclipseme.core.model
 

Subinterfaces of IPlatformComponent in eclipseme.core.model
 interface IConfiguration
          Representation of a J2ME configuration such as CLDC or CDC.
 interface IEmulator
          Required interface for emulator implementations.
 interface IExecutableEmulator
          Instances of this interface implement Emulators that are run as executables rather than as a Java class.
 interface IJavaBasedEmulator
          Instances of this interface implement Emulators that are run as a java class rather than an executable.
 interface IPlatformDefinition
          A platform definition encompasses the J2ME wireless toolkit, configuration and profiles that make up a J2ME platform.
 interface IProfile
          Representation of a J2ME profile, such as MIDP.
 interface IWirelessToolkit
          Representation of a wireless toolkit instance on the file system.
 

Methods in eclipseme.core.model with parameters of type IPlatformComponent
 void IPlatformComponent.addDependentComponent(IPlatformComponent component)
          Add a component to the list of components that are dependent on this component.
 void IPlatformComponent.removeDependentComponent(IPlatformComponent component)
          Remove a component from the list of components that are dependent on this component.
 

Uses of IPlatformComponent in eclipseme.core.model.impl
 

Classes in eclipseme.core.model.impl that implement IPlatformComponent
 class AbstractEmulator
          Abstract support class for Emulator implementations.
 class Configuration
          Standard implementation of the IConfiguration interface.
 class PlatformComponent
          Abstract superclass of the various platform components.
 class PlatformDefinition
          Standard implementation of the IPlatformDefinition interface.
 class Profile
          Standard implementation of the IProfile interface.
 class UnspecifiedPlatformDefinition
          A platform definition to be used when no other definition has been provided or it has been lost.
 class WirelessToolkit
          This is the primary implementation of the IWirelessToolkit interface that assumes Sun's implementation of the wireless toolkit (or one that looks similar to Sun's implementation).
 

Methods in eclipseme.core.model.impl that return IPlatformComponent
 IPlatformComponent WirelessToolkit.WirelessToolkitPersistenceDelegate.readObject(org.w3c.dom.Element element, org.eclipse.core.runtime.IProgressMonitor progressMonitor)
           
 IPlatformComponent Profile.ProfilePersistenceDelegate.readObject(org.w3c.dom.Element element, org.eclipse.core.runtime.IProgressMonitor progressMonitor)
           
 IPlatformComponent PlatformDefinition.PlatformDefinitionPersistenceDelegate.readObject(org.w3c.dom.Element element, org.eclipse.core.runtime.IProgressMonitor progressMonitor)
           
 IPlatformComponent Configuration.ConfigurationPersistenceDelegate.readObject(org.w3c.dom.Element element, org.eclipse.core.runtime.IProgressMonitor progressMonitor)
           
 

Methods in eclipseme.core.model.impl with parameters of type IPlatformComponent
 void WirelessToolkit.WirelessToolkitPersistenceDelegate.writeObject(org.w3c.dom.Element element, IPlatformComponent toStore, org.eclipse.core.runtime.IProgressMonitor progressMonitor)
           
 void Profile.ProfilePersistenceDelegate.writeObject(org.w3c.dom.Element element, IPlatformComponent toStore, org.eclipse.core.runtime.IProgressMonitor progressMonitor)
           
 void PlatformDefinition.PlatformDefinitionPersistenceDelegate.writeObject(org.w3c.dom.Element element, IPlatformComponent toStore, org.eclipse.core.runtime.IProgressMonitor progressMonitor)
           
 void PlatformComponent.addDependentComponent(IPlatformComponent component)
           
 void PlatformComponent.removeDependentComponent(IPlatformComponent component)
           
 void Configuration.ConfigurationPersistenceDelegate.writeObject(org.w3c.dom.Element element, IPlatformComponent toStore, org.eclipse.core.runtime.IProgressMonitor progressMonitor)