public interface GwtSuperDevOptions
GwtSuperDev task.| Modifier and Type | Method and Description |
|---|---|
java.lang.Boolean |
getAllowMissingSrc() |
java.lang.String |
getBindAddress() |
java.lang.Boolean |
getClosureFormattedOutput() |
java.lang.Boolean |
getCompileTest() |
java.lang.Integer |
getCompileTestRecompiles() |
java.lang.Boolean |
getFailOnError() |
java.io.File |
getLauncherDir() |
java.lang.Boolean |
getNoPrecompile() |
java.lang.Integer |
getPort() |
java.lang.Boolean |
getUseClasspathForSrc() |
java.io.File |
getWorkDir() |
void |
setAllowMissingSrc(java.lang.Boolean allowMissingSrc) |
void |
setBindAddress(java.lang.String bindAddress)
Sets the "-bindAddress" option that defines to which network ip the socket should be bound.
|
void |
setClosureFormattedOutput(java.lang.Boolean closureFormattedOutput)
If set to true, this adds the parameter -XclosureFormattedOutput.
|
void |
setCompileTest(java.lang.Boolean compileTest) |
void |
setCompileTestRecompiles(java.lang.Integer compileTestRecompiles) |
void |
setFailOnError(java.lang.Boolean failOnError) |
void |
setLauncherDir(java.io.File launcherDir) |
void |
setNoPrecompile(java.lang.Boolean noPrecompile)
Sets the "-noprecompile" flag that causes the Super Dev Mode to not compile the
modules on startup but only at access.
|
void |
setPort(java.lang.Integer port)
Sets the "-port" option that defines to which port the socket should be bound.
|
void |
setUseClasspathForSrc(java.lang.Boolean useClasspathForSrc)
If set to true, this causes the src to be prepended to the classpath instead of using -src parameters.
|
void |
setWorkDir(java.io.File workDir)
Sets the "-workDir" option that specifies the directory where the Super Dev Mode outputs its
generated files.
|
java.io.File getWorkDir()
setWorkDir(File)void setWorkDir(java.io.File workDir)
workDir - the workDir to setjava.lang.String getBindAddress()
void setBindAddress(java.lang.String bindAddress)
bindAddress - the bindAddress to setjava.lang.Integer getPort()
void setPort(java.lang.Integer port)
port - the port to set. Valid range is [1; 65535].java.lang.Boolean getNoPrecompile()
void setNoPrecompile(java.lang.Boolean noPrecompile)
noPrecompile - true if the noPrecompile flag should be set, false otherwisevoid setUseClasspathForSrc(java.lang.Boolean useClasspathForSrc)
useClasspathForSrc - true to add the src to the classpath, false to use -src parametersjava.lang.Boolean getUseClasspathForSrc()
void setLauncherDir(java.io.File launcherDir)
java.io.File getLauncherDir()
void setCompileTestRecompiles(java.lang.Integer compileTestRecompiles)
java.lang.Integer getCompileTestRecompiles()
void setCompileTest(java.lang.Boolean compileTest)
java.lang.Boolean getCompileTest()
void setFailOnError(java.lang.Boolean failOnError)
java.lang.Boolean getFailOnError()
void setAllowMissingSrc(java.lang.Boolean allowMissingSrc)
java.lang.Boolean getAllowMissingSrc()
java.lang.Boolean getClosureFormattedOutput()
void setClosureFormattedOutput(java.lang.Boolean closureFormattedOutput)
closureFormattedOutput - The closure formatted output.