package cse308.swift.shared.beans; public class Symbol { /** * The market symbol for this stock */ private String symbol; /** * The name of the corporation to which this symbol is associated */ private String corporation_name; /** * Default constructor for bean */ public Symbol(){} /** * Return the name of the Corporation associated with this symbol * @return The name of the Corporation associated with this symbol: String */ public String getCorporationName() { return this.corporation_name; } /** * Sets the Corporation Name for this Symbol * @param initCorporationName the corporation Name to be assigned: String */ public void setCorporationName(String initCorporationName) { this.corporation_name=initCorporationName; } /** * Return the market symbol for this stock * @return The market symbol for this stock: String */ public String getSymbol() { return this.symbol; } /** * Sets the Market Symbol for this Symbol * @param initSymbol the Symbol for this stock: String */ public void setSymbol(String initSymbol) { this.symbol = initSymbol; } }