1 11 package org.eclipse.pde.core.plugin; 12 13 import org.eclipse.core.runtime.CoreException; 14 18 public interface IPluginParent extends IPluginObject { 19 23 String P_SIBLING_ORDER = "sibling_order"; 32 void add(int index, IPluginObject child) throws CoreException; 33 40 void add(IPluginObject child) throws CoreException; 41 47 int getChildCount(); 48 49 54 int getIndexOf(IPluginObject child); 55 62 void swap(IPluginObject child1, IPluginObject child2) throws CoreException; 63 69 IPluginObject[] getChildren(); 70 77 void remove(IPluginObject child) throws CoreException; 78 } 79 | Popular Tags |