Error Dialog Example : Data Validation « Swing Components « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Swing Components » Data Validation 




Error Dialog Example
Error Dialog Example

/*
Code revised from Desktop Java Live:
http://www.sourcebeat.com/downloads/
*/
import java.awt.event.ActionEvent;

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

import com.jgoodies.forms.builder.DefaultFormBuilder;
import com.jgoodies.forms.layout.FormLayout;

public class ErrorDialogExample extends JPanel {
    JTextField nameField;
    JTextField siteField;
    JTextField feedField;
    Feed feed;

    public ErrorDialogExample() {
        DefaultFormBuilder formBuilder = new DefaultFormBuilder(new FormLayout(""));
        formBuilder.setBorder(BorderFactory.createEmptyBorder(5555));
        formBuilder.appendColumn("right:pref");
        formBuilder.appendColumn("3dlu");
        formBuilder.appendColumn("fill:p:g");

        this.nameField = new JTextField();
        formBuilder.append("Name:"this.nameField);
        this.siteField = new JTextField();
        formBuilder.append("Site Url:"this.siteField);
        this.feedField = new JTextField();
        formBuilder.append("Feed Url:"this.feedField);
        formBuilder.append(new JButton(new ShowFeedInformationAction())3);

        createFeed();
        initializeFormElements();

        add(formBuilder.getPanel());
    }

    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 void initializeFormElements() {
        this.nameField.setText(this.feed.getName());
        this.siteField.setText(this.feed.getSiteUrl());
        this.feedField.setText(this.feed.getFeedUrl());
    }

    private void synchFormAndFeed() {
        this.feed.setName(this.nameField.getText());
        this.feed.setSiteUrl(this.siteField.getText());
        this.feed.setFeedUrl(this.feedField.getText());
    }

    private boolean validateFeed() {
        boolean valid = true;
        if (this.nameField.getText().trim().length() == 0) {
            JOptionPane.showMessageDialog(null, "Name must not be empty.""Error", JOptionPane.ERROR_MESSAGE);
            valid = false;
        }

        if (this.siteField.getText().trim().length() == 0) {
            JOptionPane.showMessageDialog(null, "Site URL must not be empty.""Error", JOptionPane.ERROR_MESSAGE);
            valid = false;
        }

        if (this.feedField.getText().trim().length() == 0) {
            JOptionPane.showMessageDialog(null, "Feed URL must not be empty.""Error", JOptionPane.ERROR_MESSAGE);
            valid = false;
        }
        return valid;
    }

    private Feed getFeed() {
        return this.feed;
    }

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

        public void actionPerformed(ActionEvent event) {
            if (validateFeed()) {
                synchFormAndFeed();

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

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

    public static void main(String[] a){
      JFrame f = new JFrame("Error Dialog Example");
      f.setDefaultCloseOperation(2);
      f.add(new ErrorDialogExample());
      f.pack();
      f.setVisible(true);
    }
}


           
       














jgoodiesValidation.zip( 277 k)
Related examples in the same category
1.Component Hints ExampleComponent Hints Example
2.Field List Validator ExampleField List Validator Example
3.Info Assist ExampleInfo Assist Example
4.Input Verifier Example
5.Validating Domain Object ExampleValidating Domain Object Example
6.Validating On Focus Lost ExampleValidating On Focus Lost Example
7.Validating On Key Typed ExampleValidating On Key Typed Example
8.Validating Presentation Model ExampleValidating Presentation Model 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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.