mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
8059977: StandardJavaFileManager should support java.nio.file.Path
Reviewed-by: jlahoda
This commit is contained in:
parent
75b2a03bf9
commit
e6ea1f0ff8
11 changed files with 1059 additions and 33 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -92,6 +92,10 @@ public class ToolProvider {
|
|||
/**
|
||||
* Returns the Java™ programming language compiler provided
|
||||
* with this platform.
|
||||
* <p>The file manager returned by calling
|
||||
* {@link JavaCompiler#getStandardFileManager getStandardFileManager}
|
||||
* on this compiler supports paths provided by any
|
||||
* {@linkplain java.nio.file.FileSystem filesystem}.</p>
|
||||
* @return the compiler provided with this platform or
|
||||
* {@code null} if no compiler is provided
|
||||
*/
|
||||
|
@ -105,6 +109,10 @@ public class ToolProvider {
|
|||
/**
|
||||
* Returns the Java™ programming language documentation tool provided
|
||||
* with this platform.
|
||||
* <p>The file manager returned by calling
|
||||
* {@link DocumentationTool#getStandardFileManager getStandardFileManager}
|
||||
* on this tool supports paths provided by any
|
||||
* {@linkplain java.nio.file.FileSystem filesystem}.</p>
|
||||
* @return the documentation tool provided with this platform or
|
||||
* {@code null} if no documentation tool is provided
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue