1 11 package org.eclipse.ui.wizards; 12 13 import org.eclipse.core.runtime.IPath; 14 15 23 public interface IWizardCategory { 24 25 34 IWizardCategory findCategory(IPath path); 35 36 44 IWizardDescriptor findWizard(String id); 45 46 51 IWizardCategory[] getCategories(); 52 53 58 String getId(); 59 60 65 String getLabel(); 66 67 72 IWizardCategory getParent(); 73 74 80 IPath getPath(); 81 82 87 IWizardDescriptor[] getWizards(); 88 } 89 | Popular Tags |