Multiple Component Table: Checkbox and Combobox : Grid Table « 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 » Grid TableScreenshots 
Multiple Component Table: Checkbox and Combobox
Multiple Component Table: Checkbox and Combobox
 
// Example from http://www.crionics.com/products/opensource/faq/swing_ex/SwingExamples.html

/* (swing1.1beta3) */


import java.awt.Component;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.util.EventObject;

import javax.swing.DefaultCellEditor;
import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextField;
import javax.swing.UIManager;
import javax.swing.event.CellEditorListener;
import javax.swing.table.DefaultTableCellRenderer;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableCellEditor;

/**
 @version 1.0 11/09/98
 */

class ComboString {
  String str;

  ComboString(String str) {
    this.str = str;
  }

  public String toString() {
    return str;
  }
}

class MultiRenderer extends DefaultTableCellRenderer {
  JCheckBox checkBox = new JCheckBox();

  public Component getTableCellRendererComponent(JTable table, Object value,
      boolean isSelected, boolean hasFocus, int row, int column) {
    if (value instanceof Boolean) { // Boolean
      checkBox.setSelected(((Booleanvalue).booleanValue());
      checkBox.setHorizontalAlignment(JLabel.CENTER);
      return checkBox;
    }
    String str = (value == null"" : value.toString();
    return super.getTableCellRendererComponent(table, str, isSelected,
        hasFocus, row, column);
  }
}

class MultiEditor implements TableCellEditor {
  private final static int COMBO = 0;

  private final static int BOOLEAN = 1;

  private final static int STRING = 2;

  private final static int NUM_EDITOR = 3;

  DefaultCellEditor[] cellEditors;

  JComboBox comboBox;

  int flg;

  public MultiEditor() {
    cellEditors = new DefaultCellEditor[NUM_EDITOR];
    comboBox = new JComboBox();
    comboBox.addItem("true");
    comboBox.addItem("false");
    cellEditors[COMBOnew DefaultCellEditor(comboBox);
    JCheckBox checkBox = new JCheckBox();
    //checkBox.setOpaque( true );
    checkBox.setHorizontalAlignment(JLabel.CENTER);
    cellEditors[BOOLEANnew DefaultCellEditor(checkBox);
    JTextField textField = new JTextField();
    cellEditors[STRINGnew DefaultCellEditor(textField);
    flg = NUM_EDITOR; // nobody
  }

  public Component getTableCellEditorComponent(JTable table, Object value,
      boolean isSelected, int row, int column) {
    if (value instanceof ComboString) { // ComboString
      flg = COMBO;
      String str = (value == null"" : value.toString();
      return cellEditors[COMBO].getTableCellEditorComponent(table, str,
          isSelected, row, column);
    else if (value instanceof Boolean) { // Boolean
      flg = BOOLEAN;
      return cellEditors[BOOLEAN].getTableCellEditorComponent(table,
          value, isSelected, row, column);
    else if (value instanceof String) { // String
      flg = STRING;
      return cellEditors[STRING].getTableCellEditorComponent(table,
          value, isSelected, row, column);
    }
    return null;
  }

  public Object getCellEditorValue() {
    switch (flg) {
    case COMBO:
      String str = (StringcomboBox.getSelectedItem();
      return new ComboString(str);
    case BOOLEAN:
    case STRING:
      return cellEditors[flg].getCellEditorValue();
    default:
      return null;
    }
  }

  public Component getComponent() {
    return cellEditors[flg].getComponent();
  }

  public boolean stopCellEditing() {
    return cellEditors[flg].stopCellEditing();
  }

  public void cancelCellEditing() {
    cellEditors[flg].cancelCellEditing();
  }

  public boolean isCellEditable(EventObject anEvent) {
    return cellEditors[flg].isCellEditable(anEvent);
  }

  public boolean shouldSelectCell(EventObject anEvent) {
    return cellEditors[flg].shouldSelectCell(anEvent);
  }

  public void addCellEditorListener(CellEditorListener l) {
    cellEditors[flg].addCellEditorListener(l);
  }

  public void removeCellEditorListener(CellEditorListener l) {
    cellEditors[flg].removeCellEditorListener(l);
  }

  public void setClickCountToStart(int n) {
    cellEditors[flg].setClickCountToStart(n);
  }

  public int getClickCountToStart() {
    return cellEditors[flg].getClickCountToStart();
  }
}

public class MultiComponentTable extends JFrame {

  public MultiComponentTable() {
    super("MultiComponent Table");

    DefaultTableModel dm = new DefaultTableModel() {
      public boolean isCellEditable(int row, int column) {
        if (column == 0) {
          return true;
        }
        return false;
      }
    };
    dm.setDataVector(
        new Object[][] {
            new ComboString("true")"ComboString""JLabel",
                "JComboBox" },
            new ComboString("false")"ComboString""JLabel",
                "JComboBox" },
            new Boolean(true)"Boolean""JCheckBox",
                "JCheckBox" },
            new Boolean(false)"Boolean""JCheckBox",
                "JCheckBox" },
            "true""String""JLabel""JTextField" },
            "false""String""JLabel""JTextField" } },
        new Object[] { "Component""Data""Renderer""Editor" });

    JTable table = new JTable(dm);
    table.getColumn("Component").setCellRenderer(new MultiRenderer());
    table.getColumn("Component").setCellEditor(new MultiEditor());

    JScrollPane scroll = new JScrollPane(table);
    getContentPane().add(scroll);
    setSize(400160);
    setVisible(true);
  }

  public static void main(String[] args) {
    MultiComponentTable frame = new MultiComponentTable();
    frame.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });
  }
}


           
         
  
Related examples in the same category
1. HyperLink in TableHyperLink in Table
2. Column popup menuColumn popup menu
3. Tree TableTree Table
4. Swing Table in ComboBoxSwing Table in ComboBox
5. Tabbable Currency TableTabbable Currency Table
6. Icon Currency TableIcon Currency Table
7. MultiLine Header TableMultiLine Header Table
8. ToolTip TableToolTip Table
9. Striped Currency TableStriped Currency Table
10. CurrencyTableCurrencyTable
11. Calculated Column TableCalculated Column Table
12. Table Utilities
13. Fraction Currency TableFraction Currency Table
14. Highlight Currency TableHighlight Currency Table
15. Highlight Currency Table 2Highlight Currency Table 2
16. MultiLine TableMultiLine Table
17. Updatable Highlight Currency TableUpdatable Highlight Currency Table
18. Editable Highlight Currency TableEditable Highlight Currency Table
19. ComboBox TableComboBox Table
20. Groupable(Group) Header ExampleGroupable(Group) Header Example
21. MultiWidth Header ExampleMultiWidth Header Example
22. MultiLine Header ExampleMultiLine Header Example
23. Table Row Header ExampleTable Row Header Example
24. Fixed Table Column ExampleFixed Table Column Example
25. Button Table ExampleButton Table Example
26. Radio Button Table ExampleRadio Button Table Example
27. RadioButton Table Example 2RadioButton Table Example 2
28. MultiLine Cell ExampleMultiLine Cell Example
29. Each Row with different Editor ExampleEach Row with different Editor Example
30. multiple Component Table 2: checkboxmultiple Component Table 2: checkbox
31. Union Data Table ExampleUnion Data Table Example
32. Total(Calculate) Row ExampleTotal(Calculate) Row Example
33. Colored Cell Table Example
34. multiple Font Cell Table Example
35. Multi Span Cell Table Example
36. Mixed Table Example
37. Pushable Table Header ExamplePushable Table Header Example
38. Sortable Table ExampleSortable Table Example
39. ToolTip Header Table ExampleToolTip Header Table Example
40. Indicator Table ExampleIndicator Table Example
41. Fixed Table Row ExampleFixed Table Row Example
42. multiple Row Header Example
43. Column Border Table ExampleColumn Border Table Example
44. Cell Border Table ExampleCell Border Table Example
45. Hide Column Table ExampleHide Column Table Example
46. Animated Icon Table ExampleAnimated Icon Table Example
47. Animated Icon Header Example
48. Editable Header Table ExampleEditable Header Table Example
49. Editable Header Table Example 2Editable Header Table Example 2
50. JSortTable
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.