public class KumhoTire {
protected String company;
protected double diameter;
protected String createdDate;
protected boolean wide;
public KumhoTire(String comp, double diam, String created) {
company = comp;
diameter = diam;
createdDate = created;
}
public String getCompany() {
return company;
}
public KumhoTire setCompany(String company) {
this.company = company;
return this;
}
public double getDiameter() {
return diameter;
}
public KumhoTire setDiameter(double diameter) {
this.diameter = diameter;
return this;
}
public String getCreatedDate() {
return createdDate;
}
public KumhoTire setCreatedDate(String createdDate) {
this.createdDate = createdDate;
return this;
}
public boolean isWide() {
return wide;
}
public KumhoTire setWide(boolean wide) {
this.wide = wide;
return this;
}
}
댓글 없음:
댓글 쓰기