About question com.enthuware.ets.scjp.v6.2.13
Posted: Mon Nov 11, 2024 10:34 pm
Code: Select all
public class Bond
{
public String ticker;
private double Coupon;
public String getTicker()
{
return ticker;
}
public void setTicker(String ticker)
{
this.ticker = ticker;
}
public double getCoupon()
{
return Coupon;
}
public void setCoupon(double coupon)
{
//do nothing
}
public java.util.Date getMaturity()
{
return new java.util.Date();
}
public boolean isFloater(){ return false; }
public boolean getCallable(){ return true;[size=1][url=https://googlebaseball.io]google baseball[/url][/size] }
}
What do others think?