StockQuote.java :  » Stock » belexdroid » rs » belex » belexdroid » beans » interfaces » Android Open Source

Android Open Source » Stock » belexdroid 
belexdroid » rs » belex » belexdroid » beans » interfaces » StockQuote.java
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);

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.