Validating Presentation Model Example : Data Validation « Swing Components « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JDK 6
19. JSP
20. JSTL
21. Language Basics
22. Network Protocol
23. PDF RTF
24. Regular Expressions
25. Security
26. Servlets
27. Spring
28. Swing Components
29. Swing JFC
30. SWT JFace Eclipse
31. Threads
32. Tiny Application
33. Velocity
34. Web Services SOA
35. XML
Microsoft Office Word 2007 Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » Swing Components » Data ValidationScreenshots 
Validating Presentation Model Example
Validating Presentation Model Example

/*
Code revised from Desktop Java Live:
http://www.sourcebeat.com/downloads/
*/

import java.awt.event.ActionEvent;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;

import javax.swing.AbstractAction;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextField;

import com.jgoodies.binding.PresentationModel;
import com.jgoodies.binding.adapter.BasicComponentFactory;
import com.jgoodies.binding.value.ValueModel;
import com.jgoodies.forms.builder.DefaultFormBuilder;
import com.jgoodies.forms.layout.CellConstraints;
import com.jgoodies.forms.layout.FormLayout;
import com.jgoodies.validation.ValidationCapable;
import com.jgoodies.validation.ValidationResult;
import com.jgoodies.validation.util.DefaultValidationResultModel;
import com.jgoodies.validation.util.ValidationResultModel;
import com.jgoodies.validation.util.ValidationUtils;
import com.jgoodies.validation.view.ValidationResultViewFactory;

public class ValidatingPresentationModelExample extends JPanel {
    private Feed feed;
    private ShowFeedInformationAction showFeedInformationAction;
    private FeedPresentationModel feedPresentationModel;

    public ValidatingPresentationModelExample() {
        DefaultFormBuilder formBuilder = new DefaultFormBuilder(new FormLayout("right:pref, 3dlu, p:g"));
        formBuilder.setDefaultDialogBorder();

        createFeed();
        this.feedPresentationModel = new FeedPresentationModel(this.feed);
        ValueModel nameModel = this.feedPresentationModel.getModel("name");
        ValueModel feedModel = this.feedPresentationModel.getModel("feedUrl");
        ValueModel siteModel = this.feedPresentationModel.getModel("siteUrl");

        JTextField nameField = BasicComponentFactory.createTextField(nameModel);
        JTextField feedField = BasicComponentFactory.createTextField(feedModel);
        JTextField siteField = BasicComponentFactory.createTextField(siteModel);
        formBuilder.append("Name:", nameField);
        formBuilder.append("Site Url:", siteField);
        formBuilder.append("Feed Url:", feedField);


        this.feedPresentationModel.getValidationModel().addPropertyChangeListener(ValidationResultModel.PROPERTYNAME_RESULT, new ValidationListener());

        JComponent validationResultsComponent = ValidationResultViewFactory.createReportList(this.feedPresentationModel.getValidationModel());
        formBuilder.appendRow("top:30dlu:g");

        CellConstraints cc = new CellConstraints();
        formBuilder.add(validationResultsComponent, cc.xywh(1, formBuilder.getRow() 131"fill, fill"));
        formBuilder.nextLine(2);
        formBuilder.append(new JButton(new ValidateAction())3);

        this.showFeedInformationAction = new ShowFeedInformationAction();
        formBuilder.append(new JButton(this.showFeedInformationAction)3);

        add(formBuilder.getPanel());
    }

    private class ValidationListener implements PropertyChangeListener {
        public void propertyChange(PropertyChangeEvent evt) {
            if (evt.getPropertyName() == ValidationResultModel.PROPERTYNAME_RESULT) {
                showFeedInformationAction.setEnabled(!feedPresentationModel.getValidationModel().hasErrors());
            }
        }
    }

    private void createFeed() {
        this.feed = new Feed();
        this.feed.setName("ClientJava.com");
        this.feed.setSiteUrl("http://www.clientjava.com/blog");
        this.feed.setFeedUrl("http://www.clientjava.com/blog/rss.xml");
    }

    private class ValidateAction extends AbstractAction {
        public ValidateAction() {
            super("Validate");
        }

        public void actionPerformed(ActionEvent e) {
            feedPresentationModel.performValidation();
        }
    }

    private class ShowFeedInformationAction extends AbstractAction {
        public ShowFeedInformationAction() {
            super("Show Feed Information");
            setEnabled(false);
        }

        public void actionPerformed(ActionEvent event) {

            StringBuffer message = new StringBuffer();
            message.append("<html>");
            message.append("<b>Name:</b> ");
            message.append(feed.getName());
            message.append("<br>");
            message.append("<b>Site URL:</b> ");
            message.append(feed.getSiteUrl());
            message.append("<br>");
            message.append("<b>Feed URL:</b> ");
            message.append(feed.getFeedUrl());
            message.append("</html>");

            JOptionPane.showMessageDialog(null, message.toString());
        }
    }

    private class FeedPresentationModel extends PresentationModel implements ValidationCapable {
        private ValidationResultModel validationResultModel;

        public FeedPresentationModel(Object bean) {
            super(bean);
            this.validationResultModel = new DefaultValidationResultModel();
        }

        public ValidationResultModel getValidationModel() {
            return this.validationResultModel;
        }

        public ValidationResult validate() {
            ValidationResult validationResult = new ValidationResult();

            String name = (StringgetModel("name").getValue();
            String feedUrl = (StringgetModel("feedUrl").getValue();
            String siteUrl = (StringgetModel("siteUrl").getValue();

            if (ValidationUtils.isEmpty(name)) {
                validationResult.addError("The name field can not be blank.");
            else if (!ValidationUtils.hasBoundedLength(name, 514)) {
                validationResult.addError("The name field must be between 5 and 14 characters.");
            }

            if (!"ClientJava.com".equals(name)) {
                validationResult.addWarning("This form prefers the feed ClientJava.com");
            }


            if (ValidationUtils.isEmpty(feedUrl)) {
                validationResult.addError("The feed field can not be blank.");
            }

            if (ValidationUtils.isEmpty(siteUrl)) {
                validationResult.addError("The site field can not be blank.");
            }

            return validationResult;
        }

        public void performValidation() {
            ValidationResult validationResult = validate();
            getValidationModel().setResult(validationResult);

        }
    }

    public static void main(String[] a){
      JFrame f = new JFrame("Presentation Model Validation Example");
      f.setDefaultCloseOperation(2);
      f.add(new ValidatingPresentationModelExample());
      f.pack();
      f.setVisible(true);
    }
}


           
       
jgoodiesValidation.zip( 277 k)
Related examples in the same category
1. Component Hints ExampleComponent Hints Example
2. Error Dialog ExampleError Dialog Example
3. Field List Validator ExampleField List Validator Example
4. Info Assist ExampleInfo Assist Example
5. Input Verifier Example
6. Validating Domain Object ExampleValidating Domain Object Example
7. Validating On Focus Lost ExampleValidating On Focus Lost Example
8. Validating On Key Typed ExampleValidating On Key Typed Example
9. Validation How to ExampleValidation How to Example
10. Validation Icons ExampleValidation Icons Example
11. Validation Results View ExampleValidation Results View Example
12. Different styles how to indicate that a component contains invalid dataDifferent styles how to indicate that a component
 contains invalid data
13. how to provide input hintshow to provide input hints
14. Different validation result viewsDifferent validation result views
15. different validation times: key-typed, focus lost, commit (OK pressed)different validation times: key-typed, focus lost, commit (OK pressed)
16. Different configurations of JFormattedTextFieldDifferent configurations of JFormattedTextField
17. different configurations of JFormattedTextField: Numberdifferent configurations of JFormattedTextField: Number
18. Different styles to mark mandatory fieldsDifferent styles to mark mandatory fields
w___w__w___.__j___a___va_2___s___.com__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.