1 11 package org.eclipse.jdt.ui.wizards; 12 13 import org.eclipse.jface.wizard.IWizardPage; 14 15 import org.eclipse.jdt.core.IClasspathEntry; 16 17 36 public interface IClasspathContainerPage extends IWizardPage { 37 38 47 public boolean finish(); 48 49 57 public IClasspathEntry getSelection(); 58 59 67 public void setSelection(IClasspathEntry containerEntry); 68 69 } 70 | Popular Tags |