Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/jdk.compiler/share/classes/com/sun/source/util/Plugin.java
41175 views
1
/*
2
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package com.sun.source.util;
27
28
import java.util.ServiceLoader;
29
import javax.tools.StandardLocation;
30
31
/**
32
* The interface for a javac plug-in.
33
*
34
* <p>The javac plug-in mechanism allows a user to specify one or more plug-ins
35
* on the javac command line, to be started soon after the compilation
36
* has begun. Plug-ins are identified by a user-friendly name. Each plug-in that
37
* is started will be passed an array of strings, which may be used to
38
* provide the plug-in with values for any desired options or other arguments.
39
*
40
* <p>Plug-ins are located via a {@link ServiceLoader},
41
* using the same class path as annotation processors (i.e.
42
* {@link StandardLocation#ANNOTATION_PROCESSOR_PATH ANNOTATION_PROCESSOR_PATH} or
43
* {@code -processorpath}).
44
*
45
* <p>It is expected that a typical plug-in will simply register a
46
* {@link TaskListener} to be informed of events during the execution
47
* of the compilation, and that the rest of the work will be done
48
* by the task listener.
49
*
50
* @since 1.8
51
*/
52
public interface Plugin {
53
/**
54
* Returns the user-friendly name of this plug-in.
55
* @return the user-friendly name of the plug-in
56
*/
57
String getName();
58
59
/**
60
* Initializes the plug-in for a given compilation task.
61
* @param task The compilation task that has just been started
62
* @param args Arguments, if any, for the plug-in
63
*/
64
void init(JavacTask task, String... args);
65
66
/**
67
* Returns whether or not this plugin should be automatically started,
68
* even if not explicitly specified in the command-line options.
69
*
70
* <p>This method will be called by javac for all plugins located by the
71
* service loader. If the method returns {@code true}, the plugin will be
72
* {@link #init(JavacTask,String[]) initialized} with an empty array of
73
* string arguments if it is not otherwise initialized due to an explicit
74
* command-line option.
75
*
76
* @return whether or not this plugin should be automatically started
77
*/
78
default boolean autoStart() {
79
return false;
80
}
81
}
82
83