scalebean.java
来自「一个画股票曲线并发送邮件的程序。 采用freechart和javamail技术」· Java 代码 · 共 73 行
JAVA
73 行
package com.shfe.mail;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2005</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class ScaleBean {
private double maxPrice;
private double minPrice;
private double closePrice;
private double closePriceScale;
private double priceYLength;
private double maxAmount;
public ScaleBean() {
}
public void setMaxPrice(double maxPrice) {
this.maxPrice = maxPrice;
}
public void setMinPrice(double minPrice) {
this.minPrice = minPrice;
}
public void setClosePrice(double closePrice) {
this.closePrice = closePrice;
}
public void setClosePriceScale(double closePriceScale) {
this.closePriceScale = closePriceScale;
}
public void setPriceYLength(double priceYLength) {
this.priceYLength = priceYLength;
}
public void setMaxAmount(double maxAmount) {
this.maxAmount = maxAmount;
}
public double getMaxPrice() {
return maxPrice;
}
public double getMinPrice() {
return minPrice;
}
public double getClosePrice() {
return closePrice;
}
public double getClosePriceScale() {
return closePriceScale;
}
public double getPriceYLength() {
return priceYLength;
}
public double getMaxAmount() {
return maxAmount;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?