1 11 package org.eclipse.jdt.launching; 12 13 14 import org.eclipse.core.runtime.CoreException; 15 import org.eclipse.debug.core.ILaunchConfiguration; 16 import org.eclipse.jdt.core.IClasspathEntry; 17 import org.eclipse.jdt.core.IJavaProject; 18 19 60 public interface IRuntimeClasspathEntryResolver { 61 62 73 public IRuntimeClasspathEntry[] resolveRuntimeClasspathEntry(IRuntimeClasspathEntry entry, ILaunchConfiguration configuration) throws CoreException; 74 75 86 public IRuntimeClasspathEntry[] resolveRuntimeClasspathEntry(IRuntimeClasspathEntry entry, IJavaProject project) throws CoreException; 87 88 96 public IVMInstall resolveVMInstall(IClasspathEntry entry) throws CoreException; 97 } 98 | Popular Tags |