WindowsBuilder,是否可以生成整洁的代码?

发布于 2024-12-17 00:11:51 字数 621 浏览 0 评论 0原文

我使用 WindowsBuilder 和 Eclipse INDIGO .. WYSIWYG 生成的代码不适合我,所有的 swing 组件都是在构造函数上生成的!我希望像这样提取代码:

    private MiJPanel getPanel(){
    if(panel == null) {
        panel = new MiJPanel();
        panel.setBorder(new EmptyBorder(5, 5, 5, 5));
        panel.setImagen("/recursos/fondo2.jpg");
        panel.setLayout(null);
        panel.add(getLblUsuario());
        panel.add(getLblClave());
        panel.add(getCmbJugadores());
        panel.add(getPwdClave());
        panel.add(getBtnEntrar());
    }
    return panel;
}

每个组件都有一个“单例”函数,该函数创建组件并返回它,这使得代码更好、更清晰地用于复杂的项目。

这可能吗?

im using WindowsBuilder with Eclipse INDIGO .. the code generated by the WYSIWYG is not suitable for me , all the swing componentes are generated on the constructor! i want code to be extracted like this:

    private MiJPanel getPanel(){
    if(panel == null) {
        panel = new MiJPanel();
        panel.setBorder(new EmptyBorder(5, 5, 5, 5));
        panel.setImagen("/recursos/fondo2.jpg");
        panel.setLayout(null);
        panel.add(getLblUsuario());
        panel.add(getLblClave());
        panel.add(getCmbJugadores());
        panel.add(getPwdClave());
        panel.add(getBtnEntrar());
    }
    return panel;
}

Every component with a "singleton" function that creates the componente and returns it, that make's the code way better and clear to work with on complex project's.

Is this possible ?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文