public class GwtSuperDevOptionsImpl extends java.lang.Object implements GwtSuperDevOptions
GwtSuperDevOptions
.Constructor and Description |
---|
GwtSuperDevOptionsImpl() |
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.
|
public java.io.File getWorkDir()
getWorkDir
in interface GwtSuperDevOptions
GwtSuperDevOptions.setWorkDir(File)
public void setWorkDir(java.io.File workDir)
setWorkDir
in interface GwtSuperDevOptions
workDir
- the workDir to setpublic java.lang.String getBindAddress()
getBindAddress
in interface GwtSuperDevOptions
public void setBindAddress(java.lang.String bindAddress)
setBindAddress
in interface GwtSuperDevOptions
bindAddress
- the bindAddress to setpublic java.lang.Integer getPort()
getPort
in interface GwtSuperDevOptions
public void setPort(java.lang.Integer port)
setPort
in interface GwtSuperDevOptions
port
- the port to set. Valid range is [1; 65535].public java.lang.Boolean getNoPrecompile()
getNoPrecompile
in interface GwtSuperDevOptions
public void setNoPrecompile(java.lang.Boolean noPrecompile)
setNoPrecompile
in interface GwtSuperDevOptions
noPrecompile
- true if the noPrecompile flag should be set,
false otherwisepublic void setUseClasspathForSrc(java.lang.Boolean useClasspathForSrc)
setUseClasspathForSrc
in interface GwtSuperDevOptions
useClasspathForSrc
- true to add the src to the classpath,
false to use -src parameterspublic java.lang.Boolean getUseClasspathForSrc()
getUseClasspathForSrc
in interface GwtSuperDevOptions
public java.lang.Boolean getAllowMissingSrc()
getAllowMissingSrc
in interface GwtSuperDevOptions
public void setAllowMissingSrc(java.lang.Boolean allowMissingSrc)
setAllowMissingSrc
in interface GwtSuperDevOptions
public java.lang.Boolean getFailOnError()
getFailOnError
in interface GwtSuperDevOptions
public void setFailOnError(java.lang.Boolean failOnError)
setFailOnError
in interface GwtSuperDevOptions
public java.lang.Boolean getCompileTest()
getCompileTest
in interface GwtSuperDevOptions
public void setCompileTest(java.lang.Boolean compileTest)
setCompileTest
in interface GwtSuperDevOptions
public java.lang.Integer getCompileTestRecompiles()
getCompileTestRecompiles
in interface GwtSuperDevOptions
public void setCompileTestRecompiles(java.lang.Integer compileTestRecompiles)
setCompileTestRecompiles
in interface GwtSuperDevOptions
public java.io.File getLauncherDir()
getLauncherDir
in interface GwtSuperDevOptions
public void setLauncherDir(java.io.File launcherDir)
setLauncherDir
in interface GwtSuperDevOptions
public java.lang.Boolean getClosureFormattedOutput()
getClosureFormattedOutput
in interface GwtSuperDevOptions
public void setClosureFormattedOutput(java.lang.Boolean closureFormattedOutput)
setClosureFormattedOutput
in interface GwtSuperDevOptions
closureFormattedOutput
- The closure formatted output.