Searched defs:FilerImpl (Results 1 - 1 of 1) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/apt/
H A DFilerImpl.java49 public class FilerImpl implements Filer { class in inherits:Filer
87 void register(File file, String name, FilerImpl that) throws IOException {
101 void register(File file, String name, FilerImpl that) throws IOException {
115 void register(File file, String name, FilerImpl that) throws IOException {}
118 abstract void register(File file, String name, FilerImpl that) throws IOException;
134 private static final Context.Key<FilerImpl> filerKey =
135 new Context.Key<FilerImpl>();
153 public static FilerImpl instance(Context context) {
154 FilerImpl instance = context.get(filerKey);
156 instance = new FilerImpl(contex
175 private FilerImpl(Context context) { method in class:FilerImpl
[all...]

Completed in 31 milliseconds