Icon Currency Table : 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 
Icon Currency Table
Icon Currency Table
 
/*
Core SWING Advanced Programming 
By Kim Topley
ISBN: 0 13 083292 8       
Publisher: Prentice Hall  
*/


import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.text.NumberFormat;

import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.SwingConstants;
import javax.swing.UIManager;
import javax.swing.table.AbstractTableModel;
import javax.swing.table.DefaultTableCellRenderer;
import javax.swing.table.TableColumnModel;

public class IconCurrencyTable {
  public static void main(String[] args) {
    try {
        UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
    catch (Exception evt) {}
  
    JFrame f = new JFrame("Icon Currency Table");
    JTable tbl = new JTable(new CurrencyTableModel());
    tbl.setDefaultRenderer(java.lang.Number.class,
        new FractionCellRenderer(103, SwingConstants.RIGHT));

    TableColumnModel tcm = tbl.getColumnModel();
    tcm.getColumn(0).setPreferredWidth(150);
    tcm.getColumn(0).setMinWidth(150);
    TextWithIconCellRenderer renderer = new TextWithIconCellRenderer();
    tcm.getColumn(0).setCellRenderer(renderer);

    tbl.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    tbl.setPreferredScrollableViewportSize(tbl.getPreferredSize());

    JScrollPane sp = new JScrollPane(tbl);
    f.getContentPane().add(sp, "Center");
    f.pack();
    f.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent evt) {
        System.exit(0);
      }
    });
    f.setVisible(true);
  }
}

class CurrencyTableModel extends AbstractTableModel {
  protected String[] columnNames = "Currency""Yesterday""Today",
      "Change" };

  // Constructor: calculate currency change to create the last column
  public CurrencyTableModel() {
    for (int i = 0; i < data.length; i++) {
      data[i][DIFF_COLUMNnew Double(
          ((Doubledata[i][NEW_RATE_COLUMN]).doubleValue()
              ((Doubledata[i][OLD_RATE_COLUMN]).doubleValue());
    }
  }

  // Implementation of TableModel interface
  public int getRowCount() {
    return data.length;
  }

  public int getColumnCount() {
    return COLUMN_COUNT;
  }

  public Object getValueAt(int row, int column) {
    return data[row][column];
  }

  public Class getColumnClass(int column) {
    return (data[0][column]).getClass();
  }

  public String getColumnName(int column) {
    return columnNames[column];
  }

  protected static final int OLD_RATE_COLUMN = 1;

  protected static final int NEW_RATE_COLUMN = 2;

  protected static final int DIFF_COLUMN = 3;

  protected static final int COLUMN_COUNT = 4;

  protected static final Class thisClass = CurrencyTableModel.class;

  protected Object[][] data = new Object[][] {
      {
          new DataWithIcon("Belgian Franc"new ImageIcon(thisClass
              .getResource("belgium.gif"))),
          new Double(37.6460110)new Double(37.6508921)null },
      {
          new DataWithIcon("British Pound"new ImageIcon(thisClass
              .getResource("gb.gif"))),
          new Double(0.6213051)new Double(0.6104102)null },
      {
          new DataWithIcon("Canadian Dollar"new ImageIcon(thisClass
              .getResource("canada.gif"))),
          new Double(1.4651209)new Double(1.5011104)null },
      {
          new DataWithIcon("French Franc"new ImageIcon(thisClass
              .getResource("france.gif"))),
          new Double(6.1060001)new Double(6.0100101)null },
      {
          new DataWithIcon("Italian Lire"new ImageIcon(thisClass
              .getResource("italy.gif"))),
          new Double(1181.3668977)new Double(1182.104)null },
      {
          new DataWithIcon("German Mark"new ImageIcon(thisClass
              .getResource("germany.gif"))),
          new Double(1.8191804)new Double(1.8223421)null },
      {
          new DataWithIcon("Japanese Yen"new ImageIcon(thisClass
              .getResource("japan.gif"))),
          new Double(141.0815412)new Double(121.0040432)null } };
}

class DataWithIcon {
  public DataWithIcon(Object data, Icon icon) {
    this.data = data;
    this.icon = icon;
  }

  public Icon getIcon() {
    return icon;
  }

  public Object getData() {
    return data;
  }

  public String toString() {
    return data.toString();
  }

  protected Icon icon;

  protected Object data;
}

class FractionCellRenderer extends DefaultTableCellRenderer {
  public FractionCellRenderer(int integer, int fraction, int align) {
    this.integer = integer; // maximum integer digits
    this.fraction = fraction; // exact number of fraction digits
    this.align = align; // alignment (LEFT, CENTER, RIGHT)
  }

  protected void setValue(Object value) {
    if (value != null && value instanceof Number) {
      formatter.setMaximumIntegerDigits(integer);
      formatter.setMaximumFractionDigits(fraction);
      formatter.setMinimumFractionDigits(fraction);
      setText(formatter.format(((Numbervalue).doubleValue()));
    else {
      super.setValue(value);
    }
    setHorizontalAlignment(align);
  }

  protected int integer;

  protected int fraction;

  protected int align;

  protected static NumberFormat formatter = NumberFormat.getInstance();
}

class TextWithIconCellRenderer extends DefaultTableCellRenderer {
  protected void setValue(Object value) {
    if (value instanceof DataWithIcon) {
      if (value != null) {
        DataWithIcon d = (DataWithIcon)value;
        Object dataValue = d.getData();

        setText(dataValue == null "" : dataValue.toString());
        setIcon(d.getIcon());
        setHorizontalTextPosition(SwingConstants.RIGHT);
        setVerticalTextPosition(SwingConstants.CENTER);
        setHorizontalAlignment(SwingConstants.LEFT);
        setVerticalAlignment(SwingConstants.CENTER);
      else {
        setText("");
        setIcon(null);
      }
    else {
      super.setValue(value);
    }
  }
}

           
         
  
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. MultiLine Header TableMultiLine Header Table
7. ToolTip TableToolTip Table
8. Striped Currency TableStriped Currency Table
9. CurrencyTableCurrencyTable
10. Calculated Column TableCalculated Column Table
11. Table Utilities
12. Fraction Currency TableFraction Currency Table
13. Highlight Currency TableHighlight Currency Table
14. Highlight Currency Table 2Highlight Currency Table 2
15. MultiLine TableMultiLine Table
16. Updatable Highlight Currency TableUpdatable Highlight Currency Table
17. Editable Highlight Currency TableEditable Highlight Currency Table
18. ComboBox TableComboBox Table
19. Groupable(Group) Header ExampleGroupable(Group) Header Example
20. MultiWidth Header ExampleMultiWidth Header Example
21. MultiLine Header ExampleMultiLine Header Example
22. Table Row Header ExampleTable Row Header Example
23. Fixed Table Column ExampleFixed Table Column Example
24. Button Table ExampleButton Table Example
25. Radio Button Table ExampleRadio Button Table Example
26. RadioButton Table Example 2RadioButton Table Example 2
27. MultiLine Cell ExampleMultiLine Cell Example
28. Each Row with different Editor ExampleEach Row with different Editor 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.