1 11 package org.eclipse.pde.core.plugin; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.pde.core.IIdentifiable; 15 16 20 public interface IPluginExtension extends IPluginParent, IIdentifiable { 21 25 String P_POINT = "point"; 30 String getPoint(); 31 37 Object getSchema(); 38 44 void setPoint(String point) throws CoreException; 45 } 46 | Popular Tags |