Info Assist Example : Data Validation « Swing Components « Java

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. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Swing Components » Data ValidationScreenshots 
Info Assist Example
Info Assist Example

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

import java.awt.Component;
import java.awt.KeyboardFocusManager;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;

import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;

import com.jgoodies.forms.builder.DefaultFormBuilder;
import com.jgoodies.forms.layout.FormLayout;
import com.jgoodies.validation.view.ValidationComponentUtils;
import com.jgoodies.validation.view.ValidationResultViewFactory;

public class InfoAssistExample extends JPanel {
    private JLabel infoLabel;

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

        JTextField nameField = new JTextField();
        JTextField feedField = new JTextField();
        JTextField siteField = new JTextField();

        ValidationComponentUtils.setInputHint(nameField, "Enter a name.");
        ValidationComponentUtils.setInputHint(feedField, "Enter a valid rss feed url.");
        ValidationComponentUtils.setInputHint(siteField, "Enter a site url.");

        this.infoLabel = new JLabel();
        this.infoLabel.setIcon(ValidationResultViewFactory.getInfoIcon());
        this.infoLabel.setVisible(false);

        KeyboardFocusManager.getCurrentKeyboardFocusManager().addPropertyChangeListener(new FocusChangeHandler());

        formBuilder.append(this.infoLabel, 3);
        formBuilder.append("Name:", nameField);
        formBuilder.append("Site Url:", siteField);
        formBuilder.append("Feed Url:", feedField);

        add(formBuilder.getPanel());
    }

    private class FocusChangeHandler implements PropertyChangeListener {
        public void propertyChange(PropertyChangeEvent evt) {
            String propertyName = evt.getPropertyName();
            if (!"permanentFocusOwner".equals(propertyName))
                return;

            Component focusOwner = KeyboardFocusManager
                    .getCurrentKeyboardFocusManager().getFocusOwner();

            String focusHint = (focusOwner instanceof JComponent)
                    (StringValidationComponentUtils
                    .getInputHint((JComponentfocusOwner)
                    null;

            infoLabel.setText(focusHint);
            infoLabel.setVisible(focusHint != null);
        }
    }

    public static void main(String[] a){
      JFrame f = new JFrame("Info Assist Example");
      f.setDefaultCloseOperation(2);
      f.add(new InfoAssistExample());
      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. 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
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.