All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tr.com.lucidcode.model.GedikStock Maven / Gradle / Ivy

The newest version!
package tr.com.lucidcode.model;

public class GedikStock extends BaseStock {
	
	private Float priceDiff;

	@Override
	public String toString() {
		return "GedikStock [priceDiff=" + priceDiff + ", getStockName()="
				+ getStockName() + ", getStockPrice()=" + getStockPrice()
				+ ", getVolume()=" + getVolume() + ", getHighestPrice()="
				+ getHighestPrice() + ", getLowestPrice()=" + getLowestPrice()
				+ "]";
	}

	public Float getPriceDiff() {
		return priceDiff;
	}

	public void setPriceDiff(Float priceDiff) {
		this.priceDiff = priceDiff;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy