// A general asset that has a symbol and holds shares.
// Initial version.
public class ShareAsset {
    private String symbol;
    private double totalCost;
    private double currentPrice;

    // Constructs a new share asset with the given symbol
    // and current price.
    public ShareAsset(String symbol, double currentPrice) {
        this.symbol = symbol;
        this.currentPrice = currentPrice;
        totalCost = 0.0;
    }
    
    // Adds a cost of the given amount to this asset.
    public void addCost(double cost) {
        totalCost += cost;
    }

    // Returns the price per share of this asset.
    public double getCurrentPrice() {
        return currentPrice;
    }

    // Returns this asset's total cost spent on all shares.
    public double getTotalCost() {
        return totalCost;
    }

    // Sets the current share price of this asset.
    public void setCurrentPrice(double currentPrice) {
        this.currentPrice = currentPrice;
    }
}