public interface GwtJsInteropExportsOptions
AbstractGwtActionTask task.| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.lang.String> |
getExcludePatterns() |
java.util.List<java.lang.String> |
getIncludePatterns() |
void |
setExcludePatterns(java.lang.String... excludePatterns)
Sets the members and classes to exclude while generating JsInterop
exports.
|
void |
setGenerate(boolean shouldGenerate)
Sets the "-generateJsInteropExport" flag that enables the generation
of JsInterop exports, disabled by default.
|
void |
setIncludePatterns(java.lang.String... includePatterns)
Sets the members and classes to include while generating JsInterop
exports.
|
boolean |
shouldGenerate() |
boolean shouldGenerate()
void setGenerate(boolean shouldGenerate)
shouldGenerate - true if the "-generateJsInteropExport"
flag should be set, false otherwise to
set "-nogenerateJsInteropExports" flagjava.util.List<java.lang.String> getIncludePatterns()
void setIncludePatterns(java.lang.String... includePatterns)
includePatterns - the members and classes to include - adds
multiple "-includeJsInteropExports com.foo.*" flagsjava.util.List<java.lang.String> getExcludePatterns()
void setExcludePatterns(java.lang.String... excludePatterns)
excludePatterns - the members and classes to exclude - adds
multiple "-excludeJsInteropExports com.foo.internal.*" flags