public class GwtDevOptionsImpl extends java.lang.Object implements GwtDevOptions
GwtDevOptions.| Constructor and Description |
|---|
GwtDevOptionsImpl() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Boolean |
getAutoCodeServerPort() |
java.lang.Boolean |
getAutoPort() |
java.lang.String |
getBindAddress() |
java.lang.String |
getBlacklist() |
java.lang.Integer |
getCodeServerPort() |
java.io.File |
getLogDir() |
java.lang.Boolean |
getNoserver() |
java.lang.Integer |
getPort() |
java.lang.String |
getServer() |
java.lang.Boolean |
getStartServer() |
java.lang.String |
getStartupUrl() |
java.lang.Boolean |
getSuperDevMode() |
java.lang.String |
getWhitelist() |
void |
setAutoCodeServerPort(java.lang.Boolean autoCodeServerPort)
Is set to true, this causes the "-codeServerPort" to be automatically assigned using a free port.
|
void |
setAutoPort(java.lang.Boolean autoPort)
Is set to true, this causes the "-port" to be automatically assigned using a free port.
|
void |
setBindAddress(java.lang.String bindAddress)
Sets the "-bindAddress" option.
|
void |
setBlacklist(java.lang.String blacklist)
Sets the "-blacklist" option.
|
void |
setCodeServerPort(java.lang.Integer codeServerPort)
Sets the "-codeServerPort" option.
|
void |
setLogDir(java.io.File logDir)
Sets the "-logdir" option.
|
void |
setNoserver(java.lang.Boolean noserver)
Sets the "-noserver" flag that causes the GWT dev mode to not start the
internal webserver (jetty) but only the code server that runs the GWT
client part.
|
void |
setPort(java.lang.Integer port)
Sets the "-port" option.
|
void |
setServer(java.lang.String server)
Sets the "-server" option.
|
void |
setStartServer(java.lang.Boolean startServer)
Is set to true, this causes the "-startServer" (added in GWT 2.7) flag to be added.
|
void |
setStartupUrl(java.lang.String startupUrl)
Sets the "-startupUrl" option.
|
void |
setSuperDevMode(java.lang.Boolean superDevMode)
Is set to true, this causes the "-superDevMode" (added in GWT 2.7) flag to be added.
|
void |
setWhitelist(java.lang.String whitelist)
Sets the "-whitelist" option
|
public java.lang.Boolean getNoserver()
getNoserver in interface GwtDevOptionspublic void setNoserver(java.lang.Boolean noserver)
setNoserver in interface GwtDevOptionsnoserver - true if the "-noserver" flag should be set.public java.lang.Integer getPort()
getPort in interface GwtDevOptionspublic void setPort(java.lang.Integer port)
setPort in interface GwtDevOptionsport - Valid range is [1, 65535]public java.lang.String getWhitelist()
getWhitelist in interface GwtDevOptionspublic void setWhitelist(java.lang.String whitelist)
setWhitelist in interface GwtDevOptionswhitelist - The white list specified.public java.lang.String getBlacklist()
getBlacklist in interface GwtDevOptionspublic void setBlacklist(java.lang.String blacklist)
setBlacklist in interface GwtDevOptionsblacklist - The black list specified.public java.io.File getLogDir()
getLogDir in interface GwtDevOptionspublic void setLogDir(java.io.File logDir)
setLogDir in interface GwtDevOptionslogDir - The log dir specified.public java.lang.String getBindAddress()
getBindAddress in interface GwtDevOptionspublic void setBindAddress(java.lang.String bindAddress)
setBindAddress in interface GwtDevOptionsbindAddress - The bind address option specified.public java.lang.Integer getCodeServerPort()
getCodeServerPort in interface GwtDevOptionspublic void setCodeServerPort(java.lang.Integer codeServerPort)
setCodeServerPort in interface GwtDevOptionscodeServerPort - Valid range is [1, 65535]public java.lang.String getServer()
getServer in interface GwtDevOptionspublic void setServer(java.lang.String server)
setServer in interface GwtDevOptionsserver - The server option specified.public java.lang.String getStartupUrl()
getStartupUrl in interface GwtDevOptionspublic void setStartupUrl(java.lang.String startupUrl)
setStartupUrl in interface GwtDevOptionsstartupUrl - The startup Url specified.public java.lang.Boolean getAutoPort()
getAutoPort in interface GwtDevOptionspublic void setAutoPort(java.lang.Boolean autoPort)
setAutoPort in interface GwtDevOptionsautoPort - Whether to be automatically assigned using a free port for "-port" or not.public java.lang.Boolean getAutoCodeServerPort()
getAutoCodeServerPort in interface GwtDevOptionspublic void setAutoCodeServerPort(java.lang.Boolean autoCodeServerPort)
setAutoCodeServerPort in interface GwtDevOptionsautoCodeServerPort - Whether to be automatically assigned using a free port for "-codeServerPort" or not.public java.lang.Boolean getSuperDevMode()
getSuperDevMode in interface GwtDevOptionspublic void setSuperDevMode(java.lang.Boolean superDevMode)
setSuperDevMode in interface GwtDevOptionssuperDevMode - Whether to add "-superDevMode" (added in GWT 2.7) flag or not.public java.lang.Boolean getStartServer()
getStartServer in interface GwtDevOptionspublic void setStartServer(java.lang.Boolean startServer)
setStartServer in interface GwtDevOptionsstartServer - Whether to add "-startServer" (added in GWT 2.7) flag or not.