Total(Calculate) Row Example : Grid Table « Swing Components « Java

Home
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.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Swing Components » Grid Table 




Total(Calculate) Row Example
Total(Calculate) Row Example
 
// Example from http://www.crionics.com/products/opensource/faq/swing_ex/SwingExamples.html

/*
 * (swing1.1beta3) swing#960
 */


import java.awt.Container;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.text.DecimalFormat;
import java.text.ParseException;
import java.util.Vector;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.UIManager;
import javax.swing.event.ChangeEvent;
import javax.swing.table.DefaultTableCellRenderer;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableModel;

/**
 @version 1.0 12/03/98
 */

class DecimalRenderer extends DefaultTableCellRenderer {
  DecimalFormat formatter;

  DecimalRenderer(String pattern) {
    this(new DecimalFormat(pattern));
  }

  DecimalRenderer(DecimalFormat formatter) {
    this.formatter = formatter;
    setHorizontalAlignment(JLabel.RIGHT);
  }

  public void setValue(Object value) {
    setText((value == null"" : formatter.format(((Doublevalue)
        .doubleValue()));
  }
}

public class TotalRowExample extends JFrame {
  final private int TOTAL_ROW = 3;

  final private int TOTAL_COLUMN = 1;

  TotalRowExample() {
    super("Total Row Example");

    final DecimalFormat formatter = new DecimalFormat("###,##0.00");
    DefaultTableModel dm = new DefaultTableModel() {
      public void setValueAt(Object value, int row, int col) {
        Vector rowVector = (VectordataVector.elementAt(row);
        if (col == TOTAL_COLUMN) {
          Double d = null;
          if (value instanceof Double) {
            d = (Doublevalue;
          else {
            try {
              d = new Double(((Numberformatter
                  .parse((Stringvalue)).doubleValue());
            catch (ParseException ex) {
              d = new Double(0.0);
            }
          }
          rowVector.setElementAt(d, col);
        else {
          rowVector.setElementAt(value, col);
        }
      }

      public boolean isCellEditable(int row, int col) {
        if (row == TOTAL_ROW)
          return false;
        return true;
      }

      public Class getColumnClass(int col) {
        if (col == TOTAL_COLUMN)
          return Number.class;
        return String.class;
      }
    };

    dm.setDataVector(new Object[][] { { "coffee"new Double(0.0) },
        "tea"new Double(0.0) }"cocoa"new Double(0.0) },
        "total"new Double(0.0) } },
        new Object[] { "Item""Price" });

    JTable table = new JTable(dm) {
      public void editingStopped(ChangeEvent e) {
        super.editingStopped(e);
        reCalcurate(getModel());
        repaint();
      }
    };

    table.getColumn("Price")
        .setCellRenderer(new DecimalRenderer(formatter));

    JScrollPane scroll = new JScrollPane(table);
    Container content = getContentPane();
    content.add(scroll);
    setSize(300120);
    setVisible(true);
  }

  private void reCalcurate(TableModel ml) {
    if (ml == null)
      return;
    double total = 0.0;
    for (int i = 0; i < TOTAL_ROW; i++) {
      total += ((Doubleml.getValueAt(i, TOTAL_COLUMN)).doubleValue();
    }
    ml.setValueAt(new Double(total), TOTAL_ROW, TOTAL_COLUMN);
  }

  public static void main(String[] args) {
    TotalRowExample frame = new TotalRowExample();
    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: Checkbox and ComboboxMultiple Component Table: Checkbox and Combobox
31.multiple Component Table 2: checkboxmultiple Component Table 2: checkbox
32.Union Data Table ExampleUnion Data Table 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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.