import net.bitacademy.java41.step10.test2.ex2.HankookTire;
import net.bitacademy.java41.step10.test2.ex2.KumhoTire;
public class Tire {
protected String maker;
protected double diameter;
protected String dotNo;
public String getCompany() {
return maker;
}
public Tire setCompany(String company) {
this.maker = company;
return this;
}
public double getRadius() {
return diameter;
}
public Tire setRadius(double radius) {
this.diameter = (radius*2);
return this;
}
public String getCreatedDate() {
return dotNo;
}
public Tire setCreatedDate(String createdDate) {
this.dotNo = createdDate;
return this;
}
}
댓글 없음:
댓글 쓰기