1 7 8 package javax.tools; 9 10 import java.io.File ; 11 import java.io.IOException ; 12 import java.util.*; 13 import java.util.concurrent.*; 14 15 123 public interface StandardJavaFileManager extends JavaFileManager { 124 125 138 boolean isSameFile(FileObject a, FileObject b); 139 140 148 Iterable <? extends JavaFileObject> getJavaFileObjectsFromFiles( 149 Iterable <? extends File > files); 150 151 166 Iterable <? extends JavaFileObject> getJavaFileObjects(File ... files); 167 168 176 Iterable <? extends JavaFileObject> getJavaFileObjectsFromStrings( 177 Iterable <String > names); 178 179 194 Iterable <? extends JavaFileObject> getJavaFileObjects(String ... names); 195 196 209 void setLocation(Location location, Iterable <? extends File > path) 210 throws IOException ; 211 212 220 Iterable <? extends File > getLocation(Location location); 221 222 } 223 | Popular Tags |