01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package org.terracotta.dso.launch;
05:
06: import org.eclipse.core.runtime.CoreException;
07: import org.eclipse.debug.core.ILaunchConfiguration;
08: import org.eclipse.jdt.core.IJavaProject;
09: import org.eclipse.jdt.launching.IVMInstall;
10:
11: public interface IDSOLaunchDelegate {
12: IJavaProject getJavaProject(ILaunchConfiguration launchConfig)
13: throws CoreException;
14:
15: IVMInstall getVMInstall(ILaunchConfiguration launchConfig)
16: throws CoreException;
17: }
|