--- a/langtools/src/share/classes/com/sun/tools/javadoc/DocEnv.java Tue Jan 20 17:49:49 2009 +0000
+++ b/langtools/src/share/classes/com/sun/tools/javadoc/DocEnv.java Tue Jan 20 15:17:45 2009 -0800
@@ -25,8 +25,9 @@
package com.sun.tools.javadoc;
+import java.lang.reflect.Modifier;
import java.util.*;
-import java.lang.reflect.Modifier;
+import javax.tools.JavaFileManager;
import com.sun.javadoc.*;
@@ -40,7 +41,6 @@
import com.sun.tools.javac.util.Names;
import com.sun.tools.javac.util.Position;
-
/**
* Holds the environment for a run of javadoc.
* Holds only the information needed throughout the
@@ -103,6 +103,7 @@
Check chk;
Types types;
+ JavaFileManager fileManager;
/** Allow documenting from class files? */
boolean docClasses = false;
@@ -133,6 +134,7 @@
externalizableSym = reader.enterClass(names.fromString("java.io.Externalizable"));
chk = Check.instance(context);
types = Types.instance(context);
+ fileManager = context.get(JavaFileManager.class);
// Default. Should normally be reset with setLocale.
this.doclocale = new DocLocale(this, "", breakiterator);