package isip.java.bullyse.bullydb; import java.io.*; import java.util.*; import javax.servlet.*; import javax.servlet.http.*; public class Companies { private String Symbol; private double High; private double Low; private double Current; private int Volume; public Companies() { this.Symbol = (String)null; this.High = 0.00; this.Low = 0.00; this.Current = 0.00; this.Volume = 0; } public Companies (String Symbol, double High, double Low, double Current, int Volume) { this.Symbol = Symbol; this.High = High; this.Low = Low; this.Current = Current; this.Volume = Volume; } public String getSymbol() { return Symbol.toUpperCase(); } public double getHigh() { return High; } public double getLow() { return Low; } public double getCurrent() { return Current; } public int getVolume() { return Volume; } }