ここに私の完全なコーディングがあります.私は2つのクラスを持っています.1つはMyDateTimeで、もう1つは従業員です. EmployeePart クラスの場合、AbstractEditorPart は拡張された独自の親クラスです。
public class MyDateTime extends DateTime{
public DateTime(Composite parent, int style)
{
super(parent, style);
}
public Date getValue()
{
Date date = new Date(getYear(), getMonth(), getDay());
return date;
}
}
public Class EmployeePart extends AbstractEditorPart(
private MyDateTime currentDate;
public void createBody(Composite parent){
currentDate=Util.createDateChooserCombo(parent, toolkit, "Date:", 2);
}
public void save(Employee input){
return null;
}
}
}