1 19 20 package org.netbeans.spi.java.project.classpath; 21 22 import java.io.IOException ; 23 import java.net.URI ; 24 import org.netbeans.api.project.ant.AntArtifact; 25 import org.netbeans.api.project.libraries.Library; 26 import org.openide.filesystems.FileObject; 27 28 36 @Deprecated 37 public interface ProjectClassPathExtender { 38 39 47 @Deprecated 48 boolean addLibrary(Library library) throws IOException ; 49 50 58 @Deprecated 59 boolean addArchiveFile(FileObject archiveFile) throws IOException ; 60 61 71 @Deprecated 72 boolean addAntArtifact(AntArtifact artifact, URI artifactElement) throws IOException ; 73 74 } 75 | Popular Tags |