1 11 package org.eclipse.pde.internal.core.ifeature; 12 13 import org.eclipse.core.runtime.CoreException; 14 15 public interface IFeatureInstallHandler extends IFeatureObject { 16 String P_LIBRARY = "library"; 18 String P_HANDLER_NAME = "handlerName"; 20 public String getLibrary(); 21 22 public String getHandlerName(); 23 24 public void setLibrary(String library) throws CoreException; 25 26 public void setHandlerName(String handlerName) throws CoreException; 27 } 28 | Popular Tags |