langtools/src/java.compiler/share/classes/javax/tools/package-info.java
author amurillo
Fri, 10 Jun 2016 15:13:40 -0700
changeset 38958 d8a4ce6d05ad
parent 25874 83c19f00452c
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
     2
 * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
 * Provides interfaces for tools which can be invoked from a program,
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
 * for example, compilers.
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
 * <p>These interfaces and classes are required as part of the
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
 * Java&trade; Platform, Standard Edition (Java SE),
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
 * but there is no requirement to provide any tools implementing them.
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
 * <p>Unless explicitly allowed, all methods in this package might
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
 * throw a {@linkplain java.lang.NullPointerException} if given a
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
 * {@code null} argument or if given a
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 * {@linkplain java.lang.Iterable list or collection} containing
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 * {@code null} elements.  Similarly, no method may return
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 * {@code null} unless explicitly allowed.
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 * <p>This package is the home of the Java programming language compiler framework.  This
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 * framework allows clients of the framework to locate and run
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
 * compilers from programs.  The framework also provides Service
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
 * Provider Interfaces (SPI) for structured access to diagnostics
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
 * ({@linkplain javax.tools.DiagnosticListener}) as well as a file
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
 * abstraction for overriding file access ({@linkplain
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
 * javax.tools.JavaFileManager} and {@linkplain
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
 * javax.tools.JavaFileObject}).  See {@linkplain
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
 * javax.tools.JavaCompiler} for more details on using the SPI.
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
 * <p>There is no requirement for a compiler at runtime.  However, if
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
 * a default compiler is provided, it can be located using the
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
 * {@linkplain javax.tools.ToolProvider}, for example:
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
 * <p>{@code JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();}
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
 * <p>It is possible to provide alternative compilers or tools
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
 * through the {@linkplain java.util.ServiceLoader service provider
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
 * mechanism}.
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
 * <p>For example, if {@code com.vendor.VendorJavaCompiler} is a
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
 * provider of the {@code JavaCompiler} tool then its jar file
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
 * would contain the file {@code
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
 * META-INF/services/javax.tools.JavaCompiler}.  This file would
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
 * contain the single line:
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
 * <p>{@code com.vendor.VendorJavaCompiler}
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
 * <p>If the jar file is on the class path, VendorJavaCompiler can be
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
 * located using code like this:
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
 * <p>{@code JavaCompiler compiler = ServiceLoader.load(JavaCompiler.class).iterator().next();}
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
 * @author Peter von der Ah&eacute;
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
 * @author Jonathan Gibbons
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
 * @since 1.6
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
package javax.tools;