package rs.belex.belexdroid.beans.interfaces;
import java.util.Date;
public interface StockQuote {
public String getFormatedDate();
public Date getDate();
public void setDate(Date date);
public String getSymbol();
public void setSymbol(String symbol);
public String getCompanyName();
public void setCompanyName(String companyName);
public double getLastTradedPrice();
public void setLastTradedPrice(double lastTradedPrice);
public double getChangePercent();
public void setChangePercent(double changePercent);
public Double getClosingPrice();
public void setClosingPrice(Double closingPrice);
public Double getOpeningPrice();
public void setOpeningPrice(Double openingPrice);
public Double getDayHighPrice();
public void setDayHighPrice(Double dayHighPrice);
public Double getDayLowPrice();
public void setDayLowPrice(Double dayLowPrice);
public Integer getBuyingVolume();
public void setBuyingVolume(Integer buyingVolume);
public Integer getSellingVolume();
public void setSellingVolume(Integer sellingVolume);
public int getVolume();
public void setVolume(int volume);
public double getVolumePrice();
public void setVolumePrice(double volumePrice);
public String getType();
public void setType(String type);
public String getMethod();
public void setMethod(String method);
}
|