@@ -41,7 +41,7 @@ public interface JProxyConfig {
41
41
* @return this object for flow API use.
42
42
*/
43
43
@ NotNull
44
- public JProxyConfig setEnabled (boolean enabled );
44
+ JProxyConfig setEnabled (boolean enabled );
45
45
46
46
/**
47
47
* Sets the class reload listener.
@@ -50,7 +50,7 @@ public interface JProxyConfig {
50
50
* @return this object for flow API use.
51
51
*/
52
52
@ NotNull
53
- public JProxyConfig setRelProxyOnReloadListener (RelProxyOnReloadListener relListener );
53
+ JProxyConfig setRelProxyOnReloadListener (RelProxyOnReloadListener relListener );
54
54
55
55
/**
56
56
* Defines the folder root to locate source code Java files.
@@ -65,7 +65,7 @@ public interface JProxyConfig {
65
65
* @see #setInputPaths(java.lang.String[])
66
66
*/
67
67
@ NotNull
68
- public JProxyConfig setInputPath (String inputPath );
68
+ JProxyConfig setInputPath (String inputPath );
69
69
70
70
/**
71
71
* Defines the folder roots to locate source code Java files.
@@ -81,7 +81,7 @@ public interface JProxyConfig {
81
81
* @see #setRequiredExtraJarPaths(String[])
82
82
*/
83
83
@ NotNull
84
- public JProxyConfig setInputPaths (String [] inputPaths );
84
+ JProxyConfig setInputPaths (String [] inputPaths );
85
85
86
86
/**
87
87
* Defines the extra required jars providing the absolute paths to them.
@@ -97,7 +97,7 @@ public interface JProxyConfig {
97
97
* @see #setInputPaths(String[])
98
98
*/
99
99
@ NotNull
100
- public JProxyConfig setRequiredExtraJarPaths (String [] inputJarPaths );
100
+ JProxyConfig setRequiredExtraJarPaths (String [] inputJarPaths );
101
101
102
102
/**
103
103
* Registers the listener implementing excluding rules to filter source files not to be part of the hot reloading system in spite of included in input paths.
@@ -106,7 +106,7 @@ public interface JProxyConfig {
106
106
* @return this object for flow API use.
107
107
*/
108
108
@ NotNull
109
- public JProxyConfig setJProxyInputSourceFileExcludedListener (@ Nullable JProxyInputSourceFileExcludedListener listener );
109
+ JProxyConfig setJProxyInputSourceFileExcludedListener (@ Nullable JProxyInputSourceFileExcludedListener listener );
110
110
111
111
/**
112
112
* Registers the listener for monitoring files being compiled.
@@ -115,7 +115,7 @@ public interface JProxyConfig {
115
115
* @return this object for flow API use.
116
116
*/
117
117
@ NotNull
118
- public JProxyConfig setJProxyCompilerListener (JProxyCompilerListener listener );
118
+ JProxyConfig setJProxyCompilerListener (JProxyCompilerListener listener );
119
119
120
120
121
121
/**
@@ -129,7 +129,7 @@ public interface JProxyConfig {
129
129
* @return this object for flow API use.
130
130
*/
131
131
@ NotNull
132
- public JProxyConfig setClassFolder (@ Nullable String classFolder );
132
+ JProxyConfig setClassFolder (@ Nullable String classFolder );
133
133
134
134
/**
135
135
* Sets the delay between source code change checking.
@@ -141,7 +141,7 @@ public interface JProxyConfig {
141
141
* @return this object for flow API use.
142
142
*/
143
143
@ NotNull
144
- public JProxyConfig setScanPeriod (long scanPeriod );
144
+ JProxyConfig setScanPeriod (long scanPeriod );
145
145
146
146
/**
147
147
* Sets the compilation options to be provided to the compiler built-in in JDK like <code>JavaCompiler.getTask()</code> method and the same you would provide to javac.
@@ -153,7 +153,7 @@ public interface JProxyConfig {
153
153
* @return this object for flow API use.
154
154
*/
155
155
@ NotNull
156
- public JProxyConfig setCompilationOptions (Iterable <String > compilationOptions );
156
+ JProxyConfig setCompilationOptions (Iterable <String > compilationOptions );
157
157
158
158
/**
159
159
* Sets the diagnostic listener to capture compilation errors and warnings thrown by the internal compiler.
@@ -190,12 +190,13 @@ public interface JProxyConfig {
190
190
* @return this object for flow API use.
191
191
*/
192
192
@ NotNull
193
- public JProxyConfig setJProxyDiagnosticsListener (JProxyDiagnosticsListener diagnosticsListener );
193
+ JProxyConfig setJProxyDiagnosticsListener (JProxyDiagnosticsListener diagnosticsListener );
194
194
195
195
196
- public JProxyConfig setImports ( List < String > imports );
197
-
196
+ @ NotNull
197
+ JProxyConfig setImports ( List < String > imports );
198
198
199
199
200
- public JProxyConfig setStaticImports (List <String > staticImports );
200
+ @ NotNull
201
+ JProxyConfig setStaticImports (List <String > staticImports );
201
202
}
0 commit comments