1 11 package org.eclipse.pde.core.plugin; 12 13 import org.eclipse.core.runtime.CoreException; 14 18 public interface IPluginElement extends IPluginParent { 19 23 String P_TEXT = "text"; 28 String P_ATTRIBUTES = "attributes"; 30 34 String P_ATTRIBUTE = "attribute"; 42 IPluginElement createCopy(); 43 49 IPluginAttribute getAttribute(String name); 50 54 IPluginAttribute[] getAttributes(); 55 59 int getAttributeCount(); 60 65 String getText(); 66 73 Object getElementInfo(); 74 85 void setAttribute(String name, String value) throws CoreException; 86 94 void setText(String text) throws CoreException; 95 } 96 | Popular Tags |