src/share/classes/com/sun/tools/javac/file/Locations.java

changeset 1358
fc123bdeddb8
parent 1339
0e5899f09dab
child 1375
ea2616a6bd01
     1.1 --- a/src/share/classes/com/sun/tools/javac/file/Locations.java	Tue Oct 09 19:10:00 2012 -0700
     1.2 +++ b/src/share/classes/com/sun/tools/javac/file/Locations.java	Tue Oct 09 19:31:58 2012 -0700
     1.3 @@ -53,13 +53,14 @@
     1.4  import com.sun.tools.javac.util.Options;
     1.5  
     1.6  import javax.tools.JavaFileManager;
     1.7 +import javax.tools.StandardJavaFileManager;
     1.8  import static javax.tools.StandardLocation.*;
     1.9  import static com.sun.tools.javac.main.Option.*;
    1.10  
    1.11  /** This class converts command line arguments, environment variables
    1.12   *  and system properties (in File.pathSeparator-separated String form)
    1.13   *  into a boot class path, user class path, and source path (in
    1.14 - *  Collection<String> form).
    1.15 + *  {@code Collection<String>} form).
    1.16   *
    1.17   *  <p><b>This is NOT part of any supported API.
    1.18   *  If you write code that depends on this, you do so at your own risk.
    1.19 @@ -342,11 +343,11 @@
    1.20              }
    1.21          }
    1.22  
    1.23 -        /** @see JavaFileManager#handleOption. */
    1.24 +        /** @see JavaFileManager#handleOption */
    1.25          abstract boolean handleOption(Option option, String value);
    1.26 -        /** @see JavaFileManager#getLocation. */
    1.27 +        /** @see StandardJavaFileManager#getLocation */
    1.28          abstract Collection<File> getLocation();
    1.29 -        /** @see JavaFileManager#setLocation. */
    1.30 +        /** @see StandardJavaFileManager#setLocation */
    1.31          abstract void setLocation(Iterable<? extends File> files) throws IOException;
    1.32      }
    1.33  

mercurial