src/share/classes/com/sun/tools/javadoc/RootDocImpl.java

changeset 1412
400a4e8accd3
parent 1359
25e14ad23cef
child 1443
cfde9737131e
equal deleted inserted replaced
1411:467f4f754368 1412:400a4e8accd3
25 25
26 package com.sun.tools.javadoc; 26 package com.sun.tools.javadoc;
27 27
28 import java.io.IOException; 28 import java.io.IOException;
29 import java.util.Locale; 29 import java.util.Locale;
30 import javax.tools.JavaFileManager;
30 import javax.tools.JavaFileObject; 31 import javax.tools.JavaFileObject;
31 import javax.tools.StandardJavaFileManager; 32 import javax.tools.StandardJavaFileManager;
32 33
33 import com.sun.javadoc.*; 34 import com.sun.javadoc.*;
34 35
366 * Return the locale provided by the user or the default locale value. 367 * Return the locale provided by the user or the default locale value.
367 */ 368 */
368 public Locale getLocale() { 369 public Locale getLocale() {
369 return env.doclocale.locale; 370 return env.doclocale.locale;
370 } 371 }
372
373 /**
374 * Return the current file manager.
375 */
376 public JavaFileManager getFileManager() {
377 return env.fileManager;
378 }
371 } 379 }

mercurial