Each Row with different Editor Example : 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 
Each Row with different Editor Example
Each Row with different Editor Example
 
// Example from http://www.crionics.com/products/opensource/faq/swing_ex/SwingExamples.html
/* (swing1.1.1) */


import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
import java.awt.event.MouseEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.util.EventObject;
import java.util.Hashtable;

import javax.swing.DefaultCellEditor;
import javax.swing.JComboBox;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import javax.swing.event.CellEditorListener;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableCellEditor;

/**
 @version 1.1 09/09/99
 */
public class EachRowEditorExample extends JFrame {
  public EachRowEditorExample() {
    super("EachRow Editor Example");

    DefaultTableModel dm = new DefaultTableModel();
    dm.setDataVector(new Object[][] { { "Name""MyName" },
        "Gender""Male" } }new Object[] { "Column1""Column2" });

    JTable table = new JTable(dm);
    JComboBox comboBox = new JComboBox();
    comboBox.addItem("Male");
    comboBox.addItem("Female");
    comboBox.addComponentListener(new ComponentAdapter() {
      public void componentShown(ComponentEvent e) {
        final JComponent c = (JComponente.getSource();
        SwingUtilities.invokeLater(new Runnable() {
          public void run() {
            c.requestFocus();
            System.out.println(c);
            if (instanceof JComboBox) {
              System.out.println("a");
            }
          }
        });
      }
    });

    EachRowEditor rowEditor = new EachRowEditor(table);
    rowEditor.setEditorAt(1new DefaultCellEditor(comboBox));
    table.getColumn("Column2").setCellEditor(rowEditor);

    JScrollPane scroll = new JScrollPane(table);
    getContentPane().add(scroll, BorderLayout.CENTER);
    setSize(400100);
    setVisible(true);
  }

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

/**
 * each row TableCellEditor
 
 @version 1.1 09/09/99
 @author Nobuo Tamemasa
 */

class EachRowEditor implements TableCellEditor {
  protected Hashtable editors;

  protected TableCellEditor editor, defaultEditor;

  JTable table;

  /**
   * Constructs a EachRowEditor. create default editor
   
   @see TableCellEditor
   @see DefaultCellEditor
   */
  public EachRowEditor(JTable table) {
    this.table = table;
    editors = new Hashtable();
    defaultEditor = new DefaultCellEditor(new JTextField());
  }

  /**
   @param row
   *            table row
   @param editor
   *            table cell editor
   */
  public void setEditorAt(int row, TableCellEditor editor) {
    editors.put(new Integer(row), editor);
  }

  public Component getTableCellEditorComponent(JTable table, Object value,
      boolean isSelected, int row, int column) {
    //editor = (TableCellEditor)editors.get(new Integer(row));
    //if (editor == null) {
    //  editor = defaultEditor;
    //}
    return editor.getTableCellEditorComponent(table, value, isSelected,
        row, column);
  }

  public Object getCellEditorValue() {
    return editor.getCellEditorValue();
  }

  public boolean stopCellEditing() {
    return editor.stopCellEditing();
  }

  public void cancelCellEditing() {
    editor.cancelCellEditing();
  }

  public boolean isCellEditable(EventObject anEvent) {
    selectEditor((MouseEventanEvent);
    return editor.isCellEditable(anEvent);
  }

  public void addCellEditorListener(CellEditorListener l) {
    editor.addCellEditorListener(l);
  }

  public void removeCellEditorListener(CellEditorListener l) {
    editor.removeCellEditorListener(l);
  }

  public boolean shouldSelectCell(EventObject anEvent) {
    selectEditor((MouseEventanEvent);
    return editor.shouldSelectCell(anEvent);
  }

  protected void selectEditor(MouseEvent e) {
    int row;
    if (e == null) {
      row = table.getSelectionModel().getAnchorSelectionIndex();
    else {
      row = table.rowAtPoint(e.getPoint());
    }
    editor = (TableCellEditoreditors.get(new Integer(row));
    if (editor == null) {
      editor = defaultEditor;
    }
  }
}



           
         
  
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. Multiple Component Table: Checkbox and ComboboxMultiple Component Table: Checkbox and Combobox
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.