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

📄 portfolio.java

📁 this is a trade sale system realized by java. It can run some easy functions and has a good design p
💻 JAVA
字号:
/**
 * @author  Asok Perumainar
 * @version 
 * Created on May 28, 2001
 */
package trader;
import java.io.Serializable;
import java.util.*;
public class Portfolio implements Serializable{
  private Customer cust;
  private ArrayList shares;

  public Portfolio(Customer cust, ArrayList shares) {
    this.cust = cust;
    this.shares = shares;
  }

  public Portfolio(Customer cust) {
    this.cust = cust;
    this.shares = new ArrayList(10);
  }
  
  //accessor methods
  public Customer getCustomer(){
    return cust;
  }

  public Share[] getShares(){
    Share[] s = new Share[shares.size()];
    s = (Share[])shares.toArray(s);
    return s;
  }
  
  //other methods
  // public void addShare(Share s){}    -- should not have this 
  // public void removeShare(Share s){} -- should not have this
  // public double getValue() {}  -- should not have this
  // public String toString() {}
  // public boolean equals(Object o) {}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -