1 11 12 package org.eclipse.jdt.internal.debug.ui.launcher; 13 14 import org.eclipse.jdt.launching.IRuntimeClasspathEntry; 15 import org.eclipse.jface.viewers.ISelectionProvider; 16 import org.eclipse.jface.viewers.IStructuredSelection; 17 import org.eclipse.swt.widgets.Shell; 18 19 22 public interface IClasspathViewer extends ISelectionProvider { 23 24 30 public IRuntimeClasspathEntry[] getEntries(); 31 32 38 public void setEntries(IRuntimeClasspathEntry[] entries); 39 40 44 public Shell getShell(); 45 46 50 public boolean isEnabled(); 51 52 60 public void addEntries(IRuntimeClasspathEntry[] res); 61 62 66 public void refresh(Object entry); 67 68 72 public void notifyChanged(); 73 74 79 public int indexOf(IRuntimeClasspathEntry entry); 80 81 88 public boolean updateSelection(int actionType, IStructuredSelection selection); 89 } 90 | Popular Tags |