📄 jstockoptions.java
字号:
public void setEmailPassword(String emailPassword) {
this.emailPassword = emailPassword;
}
public boolean isPasswordProtectedIndicator() {
return passwordProtectedIndicator;
}
public void setPasswordProtectedIndicator(boolean passwordProtectedIndicator) {
this.passwordProtectedIndicator = passwordProtectedIndicator;
}
public String getIndicatorPassword() {
return indicatorPassword;
}
public void setIndicatorPassword(String indicatorPassword) {
this.indicatorPassword = indicatorPassword;
}
public String getProxyServer() {
return proxyServer;
}
public void setProxyServer(String proxyServer) {
this.proxyServer = proxyServer;
}
public int getProxyPort() {
return proxyPort;
}
public void setProxyPort(int proxyPort) {
this.proxyPort = proxyPort;
}
public int getScanningSpeed() {
return scanningSpeed;
}
public int getAlertSpeed() {
return alertSpeed;
}
public void setScanningSpeed(int scanningSpeed) {
this.scanningSpeed = scanningSpeed;
}
public void setAlertSpeed(int alertSpeed) {
this.alertSpeed = alertSpeed;
}
public Color getNormalTextForegroundColor() {
return normalTextForegroundColor;
}
public void setNormalTextForegroundColor(Color normalTextForegroundColor) {
this.normalTextForegroundColor = normalTextForegroundColor;
}
public Color getLowerNumericalValueForegroundColor() {
return lowerNumericalValueForegroundColor;
}
public void setLowerNumericalValueForegroundColor(Color lowerNumericalValueForegroundColor) {
this.lowerNumericalValueForegroundColor = lowerNumericalValueForegroundColor;
}
public Color getHigherNumericalValueForegroundColor() {
return higherNumericalValueForegroundColor;
}
public void setHigherNumericalValueForegroundColor(Color higherNumericalValueForegroundColor) {
this.higherNumericalValueForegroundColor = higherNumericalValueForegroundColor;
}
public Color getFirstRowBackgroundColor() {
return firstRowBackgroundColor;
}
public void setFirstRowBackgroundColor(Color firstRowBackgroundColor) {
this.firstRowBackgroundColor = firstRowBackgroundColor;
}
public Color getSecondRowBackgroundColor() {
return secondRowBackgroundColor;
}
public void setSecondRowBackgroundColor(Color secondRowBackgroundColor) {
this.secondRowBackgroundColor = secondRowBackgroundColor;
}
public Color getAutoUpdateForegroundColor() {
return autoUpdateForegroundColor;
}
public void setAutoUpdateForegroundColor(Color autoUpdateForegroundColor) {
this.autoUpdateForegroundColor = autoUpdateForegroundColor;
}
public Color getAutoUpdateBackgroundColor() {
return autoUpdateBackgroundColor;
}
public void setAutoUpdateBackgroundColor(Color autoUpdateBackgroundColor) {
this.autoUpdateBackgroundColor = autoUpdateBackgroundColor;
}
public boolean isEnableColorChange() {
return enableColorChange;
}
public void setEnableColorChange(boolean enableColorChange) {
this.enableColorChange = enableColorChange;
}
public boolean isAutoUpdateNewsEnabled()
{
return this.isAutoUpdateNewsEnabled;
}
public boolean isChatEnabled() {
return this.isChatEnabled;
}
public boolean isChatSoundNotificationEnabled() {
return this.isChatSoundNotificationEnabled;
}
public boolean isChatFlashNotificationEnabled() {
return this.isChatFlashNotificationEnabled;
}
public void setAutoUpdateNewsEnabled(boolean isAutoUpdateNewsEnabled)
{
this.isAutoUpdateNewsEnabled = isAutoUpdateNewsEnabled;
}
public void setChatEnabled(boolean isChatEnabled) {
this.isChatEnabled = isChatEnabled;
}
public void setChatFlashNotificationEnabled(boolean isChatFlashNotificationEnabled) {
this.isChatFlashNotificationEnabled = isChatFlashNotificationEnabled;
}
public void setChatSoundNotificationEnabled(boolean isChatSoundNotificationEnabled) {
this.isChatSoundNotificationEnabled = isChatSoundNotificationEnabled;
}
public void setNewsVersion(long newsVersion)
{
this.newsVersion = newsVersion;
}
public long getNewsVersion()
{
return this.newsVersion;
}
public double getExpectedProfitPercentage() {
return expectedProfitPercentage;
}
public void setExpectedProfitPercentage(double expectedProfitPercentage) {
this.expectedProfitPercentage = expectedProfitPercentage;
}
public Country getCountry() {
return country;
}
public void setCountry(Country country) {
this.country = country;
}
/**
* @return the historyDuration
*/
public int getHistoryDuration() {
return historyDuration;
}
/**
* @param historyDuration the historyDuration to set
*/
public void setHistoryDuration(int historyDuration) {
this.historyDuration = historyDuration;
}
/**
* @return the chatUsername
*/
public String getChatUsername() {
return chatUsername;
}
/**
* @param chatUsername the chatUsername to set
*/
public void setChatUsername(String chatUsername) {
this.chatUsername = chatUsername;
}
/**
* @return the chatSystemMessageColor
*/
public Color getChatSystemMessageColor() {
return chatSystemMessageColor;
}
/**
* @param chatSystemMessageColor the chatSystemMessageColor to set
*/
public void setChatSystemMessageColor(Color chatSystemMessageColor) {
this.chatSystemMessageColor = chatSystemMessageColor;
}
/**
* @return the chatOwnMessageColor
*/
public Color getChatOwnMessageColor() {
return chatOwnMessageColor;
}
/**
* @param chatOwnMessageColor the chatOwnMessageColor to set
*/
public void setChatOwnMessageColor(Color chatOwnMessageColor) {
this.chatOwnMessageColor = chatOwnMessageColor;
}
/**
* @return the chatOtherMessageColor
*/
public Color getChatOtherMessageColor() {
return chatOtherMessageColor;
}
/**
* @param chatOtherMessageColor the chatOtherMessageColor to set
*/
public void setChatOtherMessageColor(Color chatOtherMessageColor) {
this.chatOtherMessageColor = chatOtherMessageColor;
}
/**
* @return the chatPassword
*/
public String getChatPassword() {
return chatPassword;
}
/**
* @param chatPassword the chatPassword to set
*/
public void setChatPassword(String chatPassword) {
this.chatPassword = chatPassword;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -