Uses of Interface
org.eclipse.wst.server.core.IRuntime

Packages that use IRuntime
org.eclipse.wst.server.core The main server tools framework client API. 
org.eclipse.wst.server.core.model SPI support for the server tools framework. 
org.eclipse.wst.server.core.util Utility classes for the server tools framework. 
 

Uses of IRuntime in org.eclipse.wst.server.core
 

Subinterfaces of IRuntime in org.eclipse.wst.server.core
 interface IRuntimeWorkingCopy
          A working copy runtime object used for formulating changes to a runtime instance (IRuntime).
 

Methods in org.eclipse.wst.server.core that return IRuntime
static IRuntime ServerCore.findRuntime(java.lang.String id)
          Returns the runtime with the given id, or null if none.
 IRuntime IRuntimeWorkingCopy.getOriginal()
          Returns the runtime instance that this working copy is associated with.
 IRuntime IServerAttributes.getRuntime()
          Returns the runtime associated with this server.
static IRuntime[] ServerCore.getRuntimes()
          Returns an array of all known runtime instances.
static IRuntime[] ServerUtil.getRuntimes(java.lang.String type, java.lang.String version)
          Return a list of all runtime targets that match the given type and version.
 IRuntime IProjectProperties.getRuntimeTarget()
          Deprecated. Project facet support should now be used instead of this API. @see org.eclipse.wst.common.project.facet.core.IFacetedProject#getRuntime()
 IRuntime IRuntimeWorkingCopy.save(boolean force, org.eclipse.core.runtime.IProgressMonitor monitor)
          Commits the changes made in this working copy.
 

Methods in org.eclipse.wst.server.core with parameters of type IRuntime
 IServerWorkingCopy IServerType.createServer(java.lang.String id, org.eclipse.core.resources.IFile file, IRuntime runtime, org.eclipse.core.runtime.IProgressMonitor monitor)
          Creates an working copy instance of this server type.
 void IRuntimeLifecycleListener.runtimeAdded(IRuntime runtime)
          A new runtime has been created.
 void IRuntimeLifecycleListener.runtimeChanged(IRuntime runtime)
          An existing runtime has been updated or modified.
 void IRuntimeLifecycleListener.runtimeRemoved(IRuntime runtime)
          A existing runtime has been removed.
 void IServerWorkingCopy.setRuntime(IRuntime runtime)
          Sets the runtime associated with this server working copy.
 

Uses of IRuntime in org.eclipse.wst.server.core.model
 

Methods in org.eclipse.wst.server.core.model that return IRuntime
 IRuntime RuntimeDelegate.getRuntime()
          Returns the runtime that this runtime delegate corresponds to.
 

Methods in org.eclipse.wst.server.core.model with parameters of type IRuntime
 void ServerDelegate.importConfiguration(IRuntime runtime, org.eclipse.core.runtime.IProgressMonitor monitor)
          Deprecated. should use importRuntimeConfiguration (which can throw a CoreException) instead
 void ServerDelegate.importRuntimeConfiguration(IRuntime runtime, org.eclipse.core.runtime.IProgressMonitor monitor)
          This method is called to import the server configuration from the given runtime.
abstract  void RuntimeTargetHandlerDelegate.removeRuntimeTarget(org.eclipse.core.resources.IProject project, IRuntime runtime, org.eclipse.core.runtime.IProgressMonitor monitor)
          Deprecated. Remove the runtime target from the given project.
abstract  void RuntimeTargetHandlerDelegate.setRuntimeTarget(org.eclipse.core.resources.IProject project, IRuntime runtime, org.eclipse.core.runtime.IProgressMonitor monitor)
          Deprecated. Set the runtime target on the given project.
 

Uses of IRuntime in org.eclipse.wst.server.core.util
 

Methods in org.eclipse.wst.server.core.util with parameters of type IRuntime
 void RuntimeLifecycleAdapter.runtimeAdded(IRuntime runtime)
           
 void RuntimeLifecycleAdapter.runtimeChanged(IRuntime runtime)
           
 void RuntimeLifecycleAdapter.runtimeRemoved(IRuntime runtime)