1 11 12 package org.eclipse.jdt.internal.debug.ui.classpath; 13 14 import org.eclipse.debug.core.ILaunchConfiguration; 15 import org.eclipse.jdt.launching.IRuntimeClasspathEntry; 16 import org.eclipse.swt.widgets.Shell; 17 18 24 public interface IClasspathEditor { 25 26 33 public boolean canEdit(ILaunchConfiguration configuration, IRuntimeClasspathEntry[] entries); 34 35 44 public IRuntimeClasspathEntry[] edit(Shell shell, ILaunchConfiguration configuration, IRuntimeClasspathEntry[] entries); 45 46 } 47 | Popular Tags |