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.
static IRuntime[] ServerCore.getRuntimes()
          Returns an array of all known runtime instances.
 IRuntime IRuntimeWorkingCopy.getOriginal()
          Returns the runtime instance that this working copy is associated with.
 IRuntime IRuntimeWorkingCopy.save(boolean force, IProgressMonitor monitor)
          Commits the changes made in this working copy.
 IRuntime IServerAttributes.getRuntime()
          Returns the runtime associated with this server.
 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()
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.
 

Methods in org.eclipse.wst.server.core with parameters of type IRuntime
 IServerWorkingCopy IServerType.createServer(java.lang.String id, IFile file, IRuntime runtime, IProgressMonitor monitor)
          Creates an working copy instance of this server type.
 void IServerWorkingCopy.setRuntime(IRuntime runtime)
          Sets the runtime associated with this server working copy.
 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.
 

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
abstract  void RuntimeTargetHandlerDelegate.setRuntimeTarget(IProject project, IRuntime runtime, IProgressMonitor monitor)
          Deprecated. Set the runtime target on the given project.
abstract  void RuntimeTargetHandlerDelegate.removeRuntimeTarget(IProject project, IRuntime runtime, IProgressMonitor monitor)
          Deprecated. Remove the runtime target from the given project.
 void ServerDelegate.importConfiguration(IRuntime runtime, IProgressMonitor monitor)
          Deprecated. should use importRuntimeConfiguration (which can throw a CoreException) instead
 void ServerDelegate.importRuntimeConfiguration(IRuntime runtime, IProgressMonitor monitor)
          This method is called to import the server configuration from the given runtime.
 

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)