/* * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package com.sun.rowset.internal; import java.sql.*; import java.io.*; /** * The abstract base class from which the classes Row * The class BaseRow stores * a row's original values as an array of Object * values, which can be retrieved with the method getOrigRow. * This class also provides methods for getting and setting individual * values in the row. *

* A row's original values are the values it contained before it was last * modified. For example, when the CachedRowSetmethod * acceptChanges is called, it will reset a row's original * values to be the row's current values. Then, when the row is modified, * the values that were previously the current values will become the row's * original values (the values the row had immediately before it was modified). * If a row has not been modified, its original values are its initial values. *

* Subclasses of this class contain more specific details, such as * the conditions under which an exception is thrown or the bounds for * index parameters. */ public abstract class BaseRow implements Serializable, Cloneable { /** * The array containing the original values for this BaseRow * object. * @serial */ protected Object[] origVals; /** * Retrieves the values that this row contained immediately * prior to its last modification. * * @return an array of Object values containing this row's * original values */ public Object[] getOrigRow() { return origVals; } /** * Retrieves the array element at the given index, which is * the original value of column number idx in this row. * * @param idx the index of the element to return * @return the Object value at the given index into this * row's array of original values * @throws SQLException if there is an error */ public abstract Object getColumnObject(int idx) throws SQLException; /** * Sets the element at the given index into this row's array of * original values to the given value. Implementations of the classes * Row and determine what happens * when the cursor is on the insert row and when it is on any other row. * * @param idx the index of the element to be set * @param obj the Object to which the element at index * idx to be set * @throws SQLException if there is an error */ public abstract void setColumnObject(int idx, Object obj) throws SQLException; }