Package io.freefair.gradle.plugins.gwt
Interface CommonGwtToolOptions
-
- All Known Subinterfaces:
GwtCodeServerOptions,GwtCompileOptions,GwtDevModeOptions
- All Known Implementing Classes:
AbstractGwtTask,GwtCodeServerTask,GwtCompileTask,GwtDevModeTask
public interface CommonGwtToolOptions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListProperty<java.lang.String>getExcludeJsInteropExports()Include/exclude members and classes while generating JsInterop exports.Property<java.lang.Boolean>getFailOnError()Property<java.lang.Boolean>getGenerateJsInteropExports()Generate exports for JsInterop purposes.ListProperty<java.lang.String>getIncludeJsInteropExports()Include members and classes while generating JsInterop exports.Property<java.lang.Boolean>getIncremental()Property<java.lang.String>getLogLevel()ListProperty<java.lang.String>getModule()The GWT modules that the code server should compile.MapProperty<java.lang.String,java.lang.String>getSetProperty()Set the values of a property in the form of propertyName=value1[,value2...].Property<java.lang.String>getSourceLevel()Property<java.lang.String>getStyle()DirectoryPropertygetWorkDir()Property<java.lang.String>getXmethodNameDisplayMode()
-
-
-
Method Detail
-
getWorkDir
@Optional @OutputDirectory DirectoryProperty getWorkDir()
-
getSetProperty
@Optional @Input MapProperty<java.lang.String,java.lang.String> getSetProperty()
Set the values of a property in the form of propertyName=value1[,value2...].
-
getGenerateJsInteropExports
@Optional @Input Property<java.lang.Boolean> getGenerateJsInteropExports()
Generate exports for JsInterop purposes. If no -includeJsInteropExport/-excludeJsInteropExport provided, generates all exports. (defaults to OFF)
-
getIncludeJsInteropExports
@Optional @Input ListProperty<java.lang.String> getIncludeJsInteropExports()
Include members and classes while generating JsInterop exports. Flag could be set multiple times to expand the pattern. (The flag has only effect if exporting is enabled via -generateJsInteropExports)
-
getExcludeJsInteropExports
@Optional @Input ListProperty<java.lang.String> getExcludeJsInteropExports()
Include/exclude members and classes while generating JsInterop exports. Flag could be set multiple times to expand the pattern. (The flag has only effect if exporting is enabled via -generateJsInteropExports)
-
getXmethodNameDisplayMode
@Optional @Input Property<java.lang.String> getXmethodNameDisplayMode()
- Returns:
- EXPERIMENTAL: Specifies method display name mode for chrome devtools: NONE, ONLY_METHOD_NAME, ABBREVIATED or FULL (defaults to NONE)
-
getModule
@Input ListProperty<java.lang.String> getModule()
The GWT modules that the code server should compile. (Example: com.example.MyApp)
-
-