View Javadoc
1 /* 2 * GeoVISTA Center (Penn State, Dept. of Geography) 3 * Copyright (c), 1999 - 2002, GeoVISTA Center 4 * All Rights Researved. 5 * 6 * Description: 7 * Date: Apr 2, 2003 8 * Time: 10:42:12 PM 9 * @author Jin Chen 10 */ 11 12 package edu.psu.geovista.app.spreadsheet.event; 13 14 import javax.swing.event.TableModelEvent; 15 import javax.swing.table.TableModel; 16 17 18 19 public class SSTableModelEvent extends TableModelEvent{ 20 public static final int RESET_DATA = -202; 21 public static final int INSERT_COLUMN = 202; 22 23 public SSTableModelEvent(TableModel source, int type) { 24 super(source); 25 this.type =type; 26 } 27 }

This page was automatically generated by Maven