tr.com.lucidcode.model.GedikStock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kite-framework Show documentation
Show all versions of kite-framework Show documentation
A Web Application Framework providing DRY use of rich UI components.
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;
}
}