1 11 12 package org.eclipse.jdt.apt.core.util; 13 14 import java.io.File ; 15 16 import org.eclipse.core.runtime.CoreException; 17 import org.eclipse.core.runtime.IPath; 18 19 30 public interface IFactoryPath { 31 32 39 public void addExternalJar(File jar); 40 41 46 public void removeExternalJar(File jar); 47 48 56 public void addWkspJar(IPath jarPath); 57 58 64 public void removeWkspJar(IPath jarPath); 65 66 75 public void addVarJar(IPath jarPath); 76 77 84 public void removeVarJar(IPath jarPath); 85 86 93 public void enablePlugin(String pluginId) throws CoreException; 94 95 101 public void disablePlugin(String pluginId); 102 } 103 | Popular Tags |