src/share/classes/javax/swing/event/TableModelEvent.java

Print this page


   1 /*
   2  * Copyright (c) 1997, 2001, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  48  *
  49  * It is possible to use other combinations of the parameters, not all of them
  50  * are meaningful. By subclassing, you can add other information, for example:
  51  * whether the event WILL happen or DID happen. This makes the specification
  52  * of rows in DELETE events more useful but has not been included in
  53  * the swing package as the JTable only needs post-event notification.
  54  * <p>
  55  * <strong>Warning:</strong>
  56  * Serialized objects of this class will not be compatible with
  57  * future Swing releases. The current serialization support is
  58  * appropriate for short term storage or RMI between applications running
  59  * the same version of Swing.  As of 1.4, support for long term storage
  60  * of all JavaBeans&trade;
  61  * has been added to the <code>java.beans</code> package.
  62  * Please see {@link java.beans.XMLEncoder}.
  63  *
  64  * @author Alan Chung
  65  * @author Philip Milne
  66  * @see TableModel
  67  */

  68 public class TableModelEvent extends java.util.EventObject
  69 {
  70     /** Identifies the addition of new rows or columns. */
  71     public static final int INSERT =  1;
  72     /** Identifies a change to existing data. */
  73     public static final int UPDATE =  0;
  74     /** Identifies the removal of rows or columns. */
  75     public static final int DELETE = -1;
  76 
  77     /** Identifies the header row. */
  78     public static final int HEADER_ROW = -1;
  79 
  80     /** Specifies all columns in a row or rows. */
  81     public static final int ALL_COLUMNS = -1;
  82 
  83 //
  84 //  Instance Variables
  85 //
  86 
  87     protected int       type;


   1 /*
   2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  48  *
  49  * It is possible to use other combinations of the parameters, not all of them
  50  * are meaningful. By subclassing, you can add other information, for example:
  51  * whether the event WILL happen or DID happen. This makes the specification
  52  * of rows in DELETE events more useful but has not been included in
  53  * the swing package as the JTable only needs post-event notification.
  54  * <p>
  55  * <strong>Warning:</strong>
  56  * Serialized objects of this class will not be compatible with
  57  * future Swing releases. The current serialization support is
  58  * appropriate for short term storage or RMI between applications running
  59  * the same version of Swing.  As of 1.4, support for long term storage
  60  * of all JavaBeans&trade;
  61  * has been added to the <code>java.beans</code> package.
  62  * Please see {@link java.beans.XMLEncoder}.
  63  *
  64  * @author Alan Chung
  65  * @author Philip Milne
  66  * @see TableModel
  67  */
  68 @SuppressWarnings("serial") // Same-version serialization only
  69 public class TableModelEvent extends java.util.EventObject
  70 {
  71     /** Identifies the addition of new rows or columns. */
  72     public static final int INSERT =  1;
  73     /** Identifies a change to existing data. */
  74     public static final int UPDATE =  0;
  75     /** Identifies the removal of rows or columns. */
  76     public static final int DELETE = -1;
  77 
  78     /** Identifies the header row. */
  79     public static final int HEADER_ROW = -1;
  80 
  81     /** Specifies all columns in a row or rows. */
  82     public static final int ALL_COLUMNS = -1;
  83 
  84 //
  85 //  Instance Variables
  86 //
  87 
  88     protected int       type;