Package javax.tools
See: Description
-
Interface Summary Interface Description Diagnostic<S> Interface for diagnostics from tools.DiagnosticListener<S> Interface for receiving diagnostics from tools.FileObject File abstraction for tools.JavaCompiler Interface to invoke Java™ programming language compilers from programs.JavaCompiler.CompilationTask Interface representing a future for a compilation task.JavaFileManager File manager for tools operating on Java™ programming language source and class files.JavaFileManager.Location Interface for locations of file objects.JavaFileObject File abstraction for tools operating on Java™ programming language source and class files.OptionChecker Interface for recognizing options.StandardJavaFileManager File manager based on java.io.File.Tool Common interface for tools that can be invoked from a program. -
Class Summary Class Description DiagnosticCollector<S> Provides an easy way to collect diagnostics in a list.ForwardingFileObject<F extends FileObject> Forwards calls to a given file object.ForwardingJavaFileManager<M extends JavaFileManager> Forwards calls to a given file manager.ForwardingJavaFileObject<F extends JavaFileObject> Forwards calls to a given file object.SimpleJavaFileObject Provides simple implementations for most methods in JavaFileObject.ToolProvider Provides methods for locating tool providers, for example, providers of compilers. -
Enum Summary Enum Description Diagnostic.Kind Kinds of diagnostics, for example, error or warning.JavaFileObject.Kind Kinds of JavaFileObjects.StandardLocation Standard locations of file objects.
Package javax.tools Description
These interfaces and classes are required as part of the Java™ Platform, Standard Edition (Java SE), but there is no requirement to provide any tools implementing them.
Unless explicitly allowed, all methods in this package might
throw a NullPointerException if given a
null
argument or if given a
list or collection containing
null
elements. Similarly, no method may return
null
unless explicitly allowed.
This package is the home of the Java programming language compiler framework. This framework allows clients of the framework to locate and run compilers from programs. The framework also provides Service Provider Interfaces (SPI) for structured access to diagnostics (DiagnosticListener) as well as a file abstraction for overriding file access (JavaFileManager and JavaFileObject). See JavaCompiler for more details on using the SPI.
There is no requirement for a compiler at runtime. However, if a default compiler is provided, it can be located using the ToolProvider, for example:
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
It is possible to provide alternative compilers or tools through the service provider mechanism.
For example, if com.vendor.VendorJavaCompiler
is a
provider of the JavaCompiler
tool then its jar file
would contain the file META-INF/services/javax.tools.JavaCompiler
. This file would
contain the single line:
com.vendor.VendorJavaCompiler
If the jar file is on the class path, VendorJavaCompiler can be located using code like this:
JavaCompiler compiler = ServiceLoader.load(JavaCompiler.class).iterator().next();
- Since:
- 1.6
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-javax/tools/package-summary.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.