portfolio.java

来自「this is a trade sale system realized by 」· Java 代码 · 共 41 行

JAVA
41
字号
/**
 * @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 + =
减小字号Ctrl + -
显示快捷键?