public void copy(AppStockList other) { if (other != null) { copy(other.stocks); } }
public void append(AppStockList other) { if (other != null) { append(other.stocks); } }