如何为我班上的所有变量生成模板函数?

时间:2015-06-04 14:50:21

标签: java eclipse

我正在使用Eclipse进行RCP和RAP开发人员 Version: Kepler Service Release 2(32 bit)

我的班级看起来像这样:

public class Builder
{
    double  booking_id;
    Date beg_dt_tm;
    Date end_dt_tm;
    boolean status_flag;
    String status_meaning;
    double encntr_id;
    double appt_type_cd;
    String appt_type_disp;
    String appt_type_display;
    double location_cd;
    String location_display;
    double sch_role_cd;
    String role_meaning;
    double primary_resource_cd;
    String primary_resource_display;
    long order_qual_cnt;
    List<Order_QualSDO>order_qual = new ArrayList<Order_QualSDO>();
    double sch_event_id;
    double schedule_id;
    long schedule_seq;
}

我想为此生成如下函数:

public Builder booking_id(double booking_id)
{
    this.booking_id = booking_id;
    return this;
}

对于Builder Class中的所有变量。现在我知道如何生成getter和setter,但我不知道我们是否可以在Eclipse中生成自定义函数定义。 如果是,如何?
如果不是。我最好开始,因为下一个类有110个变量。 :( 帮助是赞赏的。

0 个答案:

没有答案