WindowsBuilder,是否可以生成整洁的代码?
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论