任何可以基于javabean规则生成部分代码的工具(setter和getter方法)

发布于 2024-11-19 07:47:58 字数 888 浏览 0 评论 0原文

假设我在java中有一个类,我希望它成为一个javabean(那些getter和setter方法)

我编写的类:

class MyClass{
    String var1;
    Integer var2;
    ........
    many other properties
    ........
}

基于javabean规则生成部分代码之后:(如果有一些工具!)

class MyClass{
    String var1;
    Integer var2;
    ........
    many other properties
    ........

    public void setVar1(String var1){
       this.var1=var1;
    }
    public String getVar1(){
       return var1;
    }

    public void setVar2(Integer var2){
       this.var1=var1;
    }

    public Integer getVar2(){
       return var2;
    }
    ............
    Many other getter and setter method
    ............
}

这是非常乏味的必须为所有属性编写所有 getter 和 setter 方法才能使 MyClass 成为 javabean。

只要我给出属性,是否有任何软件或 IDE 插件可以帮助完成其余的工作。尽管某些假定生成的代码不正确,但仅修改某些生成的代码比我自己编写这些代码要快得多且令人愉快。

Say if I have a class in java and I want it to be a javabean(those getter and setter methods)

The class that I write:

class MyClass{
    String var1;
    Integer var2;
    ........
    many other properties
    ........
}

After partial code generation based on javabean rules:(If there is some tool!)

class MyClass{
    String var1;
    Integer var2;
    ........
    many other properties
    ........

    public void setVar1(String var1){
       this.var1=var1;
    }
    public String getVar1(){
       return var1;
    }

    public void setVar2(Integer var2){
       this.var1=var1;
    }

    public Integer getVar2(){
       return var2;
    }
    ............
    Many other getter and setter method
    ............
}

It is very tedious to have to write all those getter and setter methods for all the properties in order to make MyClass a javabean.

Is there any software or IDE plugin that can help do the rest of the work as long as I just give the properties. Even though some of the assumingly-generated code is not correct, but modifying just some of the generated code is much faster and delightful than having to write those codes on my own.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

飘然心甜 2024-11-26 07:47:59

任何名副其实的 IDE 都会为您做这件事。例如,在 Eclipse 中,右键单击 >来源-> Getter 和 Setter。

显然,其他 IDE 有所不同,但它们的作用是相同的。

Any IDE worth the name will do this for you. For example, in Eclipse it's right-click > Source -> Getters and Setters.

Different in other IDEs, obviously, but they do the same thing.

半城柳色半声笛 2024-11-26 07:47:59

日食与Netbeans 和其他 IDE 可能有一个“生成 getter 和 setter”的快捷方式。

Eclipse & Netbeans and perhaps other IDE's have a "generate getters and setters"-shortcut.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文