JGoodies Binding: Abstract Table Model Example : Data Binding « Swing Components « Java






JGoodies Binding: Abstract Table Model Example

JGoodies Binding: Abstract Table Model Example
/*
Code revised from Desktop Java Live:
http://www.sourcebeat.com/downloads/
*/
import java.awt.BorderLayout;

import javax.swing.JFrame;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.ListModel;

import com.jgoodies.binding.adapter.AbstractTableAdapter;
import com.jgoodies.binding.adapter.Bindings;
import com.jgoodies.binding.adapter.SingleListSelectionAdapter;
import com.jgoodies.binding.list.ArrayListModel;
import com.jgoodies.binding.list.SelectionInList;
import com.jgoodies.forms.builder.DefaultFormBuilder;
import com.jgoodies.forms.layout.FormLayout;

public class AbstractTableModelExample extends JPanel {
    private ArrayListModel arrayListModel;

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

        this.arrayListModel = new ArrayListModel();
        this.arrayListModel.add(new DisplayTechnology("Swing", "Is a Java API", "Sun"));
        this.arrayListModel.add(new DisplayTechnology("Flash", "Is NOT a Java API", "Macromedia"));
        this.arrayListModel.add(new DisplayTechnology("SWT", "Is a Java API", "Eclipse"));
        this.arrayListModel.add(new DisplayTechnology("QT", "Is NOT a Java API", "Trolltech"));
        this.arrayListModel.add(new DisplayTechnology("AWT", "Is a Java API", "Sun"));

        SelectionInList selectionInList = new SelectionInList((ListModel) this.arrayListModel);

        JList jlist = new JList();
        Bindings.bind(jlist, selectionInList);
        defaultFormBuilder.append("List Model: ", new JScrollPane(jlist));

        JTable table = new JTable(new DisplayTechnologyTableAdapter(selectionInList, new String[]{"Name", "Description",
            "Maker"}));
        table.setSelectionModel(new SingleListSelectionAdapter(
                selectionInList.getSelectionIndexHolder()));
        JScrollPane scrollPane = new JScrollPane(table);
        scrollPane.setPreferredSize(table.getPreferredSize());
        defaultFormBuilder.append("Table", scrollPane);

        add(defaultFormBuilder.getPanel());
    }

    private class DisplayTechnology {
        private String name;
        private String description;
        private String maker;

        public DisplayTechnology(String name, String description, String maker) {
            this.name = name;
            this.description = description;
            this.maker = maker;
        }

        public String getName() {
            return name;
        }

        public String getDescription() {
            return description;
        }

        public String getMaker() {
            return maker;
        }

        public String toString() {
            return name;
        }
    }

    private class DisplayTechnologyTableAdapter extends AbstractTableAdapter {
        public DisplayTechnologyTableAdapter(ListModel listModel, String[] columnNames) {
            super(listModel, columnNames);
        }

        public Object getValueAt(int rowIndex, int columnIndex) {
            DisplayTechnology displayTechnology = (DisplayTechnology) getRow(rowIndex);
            if (columnIndex == 0) {
                return displayTechnology.getName();
            } else if (columnIndex == 1) {
                return displayTechnology.getDescription();
            } else {
                return displayTechnology.getMaker();
            }
        }
    }

    public static void main(String[] a){
      JFrame f = new JFrame("Abstract TableModel Example");
      f.setDefaultCloseOperation(2);
      f.add(new AbstractTableModelExample());
      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: Basic Component Factory ExampleJGoodies Binding: Basic Component Factory Example
11.JGoodies Binding: Bean Adapter ExampleJGoodies Binding: Bean Adapter Example
12.JGoodies Binding: Bounded Range Adapter ExampleJGoodies Binding: Bounded Range Adapter Example
13.JGoodies Binding: Buffering Presentation Model ExampleJGoodies Binding: Buffering Presentation Model Example
14.JGoodies Binding: ComboBox Adapter ExampleJGoodies Binding: ComboBox Adapter Example
15.JGoodies Binding: Converter Factory ExampleJGoodies Binding: Converter Factory Example
16.JGoodies Binding: Feed Bean Example 1JGoodies Binding: Feed Bean Example 1
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