JGoodies Binding: Feed Bean Example 1 : Data Binding « 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 BindingScreenshots 
JGoodies Binding: Feed Bean Example 1
JGoodies Binding: Feed Bean Example 1

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

import java.awt.event.ActionEvent;
import java.util.Arrays;
import java.util.List;

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 FeedBeanExample1 extends JPanel {
    JTextField nameField;
    JTextField siteField;
    JTextField feedField;
    Feed feed;

    public FeedBeanExample1() {
        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 Feed getFeed() {
        return this.feed;
    }

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

        public void actionPerformed(ActionEvent event) {
            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("Feed Bean Example 1");
      f.setDefaultCloseOperation(2);
      f.add(new FeedBeanExample1());
      f.pack();
      f.setVisible(true);
    }
    class Feed {
        private long id = 0;
        private String name;
        private String siteUrl;
        private String feedUrl;
        private FeedType feedType;
        private boolean customCheckIntervalEnabled = false;
        private Integer checkInterval;

        public Feed() {
        }

        public Feed(String name, String siteUrl, String feedUrl, FeedType feedType) {
            this.name = name;
            this.siteUrl = siteUrl;
            this.feedUrl = feedUrl;
            this.feedType = feedType;
        }

        public long getId() {
            return id;
        }

        public void setId(long id) {
            this.id = id;
        }

        public String getName() {
            return name;
        }

        public void setName(String newName) {
            this.name = newName;
        }

        public String getSiteUrl() {
            return siteUrl;
        }

        public void setSiteUrl(String newSiteUrl) {
            this.siteUrl = newSiteUrl;
        }

        public String getFeedUrl() {
            return feedUrl;
        }

        public void setFeedUrl(String newFeedUrl) {
            this.feedUrl = newFeedUrl;
        }

        public FeedType getFeedType() {
            return feedType;
        }

        public void setFeedType(FeedType newFeedType) {
            this.feedType = newFeedType;
        }

        public boolean isCustomCheckIntervalEnabled() {
            return customCheckIntervalEnabled;
        }

        public void setCustomCheckIntervalEnabled(boolean newCustomCheckIntervalEnabled) {
            this.customCheckIntervalEnabled = newCustomCheckIntervalEnabled;
        }

        public Integer getCheckInterval() {
            return checkInterval;
        }

        public void setCheckInterval(Integer newCheckInterval) {
            this.checkInterval = newCheckInterval;
        }

        public String toString() {
            return this.name;
        }
    }


    class FeedType {
        private String type;

        private FeedType(String type) {
            this.type = type;
        }

        public boolean equals(Object o) {
            if (this == oreturn true;
            if (!(instanceof FeedType)) return false;

            final FeedType feedType = (FeedTypeo;

            if (type != null ? !type.equals(feedType.type: feedType.type != nullreturn false;

            return true;
        }

        public int hashCode() {
            return (type != null ? type.hashCode() 0);
        }

        public String toString() {
            return this.type;
        }

        public FeedType RSS_09 = new FeedType("RSS_09");
        public FeedType RSS_093 = new FeedType("RSS_093");
        public FeedType RSS_20 = new FeedType("RSS_20");
        public FeedType ATOM_03 = new FeedType("ATOM_03");

        public final List TYPES = Arrays.asList(new FeedType[]{
            RSS_09, RSS_093, RSS_20, ATOM_03});

    }

}

           
       
jgoodiesDataBinding.zip( 254 k)
Related examples in the same category
1. Demonstrates three different styles when to commit changesDemonstrates three different styles when to commit changes
2. Builds an editor with components bound to the domain object propertiesBuilds an editor with components bound to the domain object properties
3. Using buffered adapting ValueModels created by a PresentationModelUsing buffered adapting ValueModels created by a PresentationModel
4. Builds an editor that copies data from the domain back and forthBuilds an editor that copies data from the domain back and forth
5. JGoodies Binding: Selection In List Bean Channel ExampleJGoodies Binding: Selection In List Bean Channel Example
6. JGoodies Binding: Selection In List ExampleJGoodies Binding: Selection In List Example
7. JGoodies Binding: Selection In List Model ExampleJGoodies Binding: Selection In List Model Example
8. JGoodies Binding: Toggle Button Adapter ExampleJGoodies Binding: Toggle Button Adapter Example
9. JGoodies Binding: Value Holder ExampleJGoodies Binding: Value Holder Example
10. JGoodies Binding: Abstract Table Model ExampleJGoodies Binding: Abstract Table Model Example
11. JGoodies Binding: Basic Component Factory ExampleJGoodies Binding: Basic Component Factory Example
12. JGoodies Binding: Bean Adapter ExampleJGoodies Binding: Bean Adapter Example
13. JGoodies Binding: Bounded Range Adapter ExampleJGoodies Binding: Bounded Range Adapter Example
14. JGoodies Binding: Buffering Presentation Model ExampleJGoodies Binding: Buffering Presentation Model Example
15. JGoodies Binding: ComboBox Adapter ExampleJGoodies Binding: ComboBox Adapter Example
16. JGoodies Binding: Converter Factory ExampleJGoodies Binding: Converter Factory Example
17. JGoodies Binding: Feed Bean Example 2JGoodies Binding: Feed Bean Example 2
18. JGoodies Binding: Feed Bean Example 3JGoodies Binding: Feed Bean Example 3
19. JGoodies Binding: Presentation Bean Channel ExampleJGoodies Binding: Presentation Bean Channel Example
20. JGoodies Binding: Presentation Bean Property Change Listener ExampleJGoodies Binding: Presentation Bean Property Change Listener Example
21. JGoodies Binding: Presentation Model Property Change ExampleJGoodies Binding: Presentation Model Property Change Example
22. JGoodies Binding: Property Adapter Example 1JGoodies Binding: Property Adapter Example 1
23. JGoodies Binding: Property Adapter Example 2JGoodies Binding: Property Adapter Example 2
24. JGoodies Binding: Property Adapter Example 3JGoodies Binding: Property Adapter Example 3
25. JGoodies Binding: Property Connector ExampleJGoodies Binding: Property Connector Example
26. JGoodies Binding: Radio Button Adapter ExampleJGoodies Binding: Radio Button Adapter Example
27. Swingx: Swing Data BindingSwingx: Swing Data Binding
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.