⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scalebean.java

📁 一个画股票曲线并发送邮件的程序。 采用freechart和javamail技术。
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -