1 11 package org.eclipse.pde.core.plugin; 12 13 import org.eclipse.core.runtime.CoreException; 14 18 public interface IPluginImport extends IPluginObject, IPluginReference { 19 23 String P_REEXPORTED = "export"; 28 String P_OPTIONAL = "optional"; 35 boolean isReexported(); 36 42 boolean isOptional(); 43 51 void setReexported(boolean value) throws CoreException; 52 58 void setOptional(boolean value) throws CoreException; 59 60 } 61 | Popular Tags |