JGoodies Binding: Presentation Model Property Change Example : Data Binding « Swing Components « Java






JGoodies Binding: Presentation Model Property Change Example

JGoodies Binding: Presentation Model Property Change 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.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.beans.Model;
import com.jgoodies.binding.value.ValueModel;
import com.jgoodies.forms.builder.DefaultFormBuilder;
import com.jgoodies.forms.layout.FormLayout;

public class PresentationModelPropertyChangeExample extends JPanel {
    private PersonBean personBean1;
    private PersonBean personBean2;
    private PresentationModel presentationModel;

    public PresentationModelPropertyChangeExample() {
        DefaultFormBuilder defaultFormBuilder = new DefaultFormBuilder(new FormLayout("p, 2dlu, p:g"));
        defaultFormBuilder.setDefaultDialogBorder();

        this.personBean1 = new PersonBean("Scott", "Delap");
        this.personBean2 = new PersonBean("Matt", "Raible");

        this.presentationModel = new PresentationModel(this.personBean1);
        this.presentationModel.addPropertyChangeListener(new BeanChannelChangeListener());

        ValueModel firstNameAdapter = presentationModel.getModel("firstName");
        ValueModel lastNameAdapter = presentationModel.getModel("lastName");

        JTextField firstNameTextField = BasicComponentFactory.createTextField(firstNameAdapter);
        JTextField lastNameTextField = BasicComponentFactory.createTextField(lastNameAdapter);

        defaultFormBuilder.append("First Name: ", firstNameTextField);
        defaultFormBuilder.append("Last Name: ", lastNameTextField);
        defaultFormBuilder.append(new JButton(new ChangeBeanAction()), 3);

        add(defaultFormBuilder.getPanel());
    }

    private class ChangeBeanAction extends AbstractAction {
        public ChangeBeanAction() {
            super("Change PersonBean");
        }

        public void actionPerformed(ActionEvent event) {
            if (presentationModel.getBean() == personBean1) {
                presentationModel.setBean(personBean2);
            } else {
                presentationModel.setBean(personBean1);
            }
        }
    }

    private class BeanChannelChangeListener implements PropertyChangeListener {
        public void propertyChange(PropertyChangeEvent evt) {
            JOptionPane.showMessageDialog(null, "Property " + evt.getPropertyName() + " Old Value = " + evt.getOldValue() + ", New Value = " + evt.getNewValue());
        }
    }

    public class PersonBean extends Model {
        private String firstName;
        private String lastName;

        public static final String FIRST_NAME_PROPERTY = "firstName";
        public static final String LAST_NAME_PROPERTY = "lastName";

        public PersonBean(String firstName, String lastName) {
            this.firstName = firstName;
            this.lastName = lastName;
        }

        public String getFirstName() {
            return firstName;
        }

        public void setFirstName(String firstName) {
            String oldValue = this.firstName;
            this.firstName = firstName;
            firePropertyChange(FIRST_NAME_PROPERTY, oldValue, this.firstName);
        }

        public String getLastName() {
            return lastName;
        }

        public void setLastName(String lastName) {
            String oldValue = this.lastName;
            this.lastName = lastName;
            firePropertyChange(LAST_NAME_PROPERTY, oldValue, this.lastName);
        }

        public String toString() {
            return getFirstName() + " " + getLastName();
        }
    }

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

           
       








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 1JGoodies Binding: Feed Bean Example 1
18.JGoodies Binding: Feed Bean Example 2JGoodies Binding: Feed Bean Example 2
19.JGoodies Binding: Feed Bean Example 3JGoodies Binding: Feed Bean Example 3
20.JGoodies Binding: Presentation Bean Channel ExampleJGoodies Binding: Presentation Bean Channel Example
21.JGoodies Binding: Presentation Bean Property Change Listener ExampleJGoodies Binding: Presentation Bean Property Change Listener 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