快速业务通道

Swing通用数据验证模块 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-15
ty.create("${" + sourceProperty + "}"),        field, BeanProperty.create("text"));    bindingGroup.addBinding(binding);    bindingGroup.bind();    return new JXLayer<jTextComponent>(field, new HibernateValidationUI(        sourceObject, sourceProperty)); } }

createTextField()方法主要将给定对象属性的值与JTextField的text绑定,然后将JTextField纳入到 JXLayer的管理之下。这样一来,一旦用户在JTextField里面修改数据,这个改变就会同步到该对象属性 上,然后就引发了前面描述的一系列逻辑,最终改变的数据就会被Hiberante Validator加以验证。

最后,我们可以编写一个Demo application来看看效果如何,代码如下:

package de.jingge.main; import de.jingge.domain.Country; import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.Toolkit; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.UIManager; import javax.swing.UnsupportedLookAndFeelException; import javax.swing.text.JTextComponent; import net.miginfocom.swing.MigLayout; import org.jdesktop.beansbinding.BindingGroup; import org.jdesktop.jxlayer.JXLayer; import static de.jingge.view.GuiComponentFactory.*; public class ValidationApplicaton { private BindingGroup bg; private Country country; private JXLayer<jTextComponent> codeField; private JXLayer<jTextComponent> nameField; /** * @param args the command line arguments */ public static void main(String[] args) {    try {      UIManager.setLookAndFeel(          "com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");    } catch (UnsupportedLookAndFeelException ex) {      System.err.println(          "Nimbus L&F does not support. Default L&F will be used.");    } catch (ClassNotFoundException e) {      // TODO Auto-generated catch block      e.printStackTrace();    } catch (InstantiationException e) {      // TODO Auto-generated catch block      e.printStackTrace();    } catch (IllegalAccessException e) {      // TODO Auto-generated catch block      e.printStackTrace();    }    ValidationApplicaton app = new ValidationApplicaton();    JFrame frame = new JFrame("Demo Validation Application");    frame.setPreferredSize(new Dimension(360, 150));    frame.getContentPane().add(app.buildPanel(), BorderLayout.CENTER);    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);    setCenter(frame);    frame.setVisible(true);    frame.pack(); } private static void setCenter(JFrame frame) {    Toolkit toolkit = Toolkit.getDefaultToolkit();    Dimension screenSize = toolkit.getScreenSize();    // Calculate the frame location    int x = (screenSize.width - (int) frame.getPreferredSize().getWidth()) / 2;    int y = (screenSize.height - (int) frame.getPreferredSize().getHeight()) / 2;    // Set the new frame location    frame.setLocation(x, y); } public ValidationApplicaton() {    country = new Country();    bg = new BindingGroup(); } p

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号