com.sas.table
Interface RowInfoInterface

All Superinterfaces:
StaticRowInfoInterface

public interface RowInfoInterface
extends StaticRowInfoInterface

Defines an interface for modifying additional information associated with a table's rows.

See Also:
ColumnInfoInterface

Method Summary
 void setRowInfo(int index, java.lang.String rowInfoName, java.lang.Object info)
          Updates a row's named information.
 
Methods inherited from interface com.sas.table.StaticRowInfoInterface
getRowInfo, getRowInfoNames
 

Method Detail

setRowInfo

void setRowInfo(int index,
                java.lang.String rowInfoName,
                java.lang.Object info)
                throws com.sas.table.TableException
Updates a row's named information. The row is identified by the given index and is assigned the given new information.

Parameters:
index - A one-based index that identifies the row.
rowInfoName - The name of the information to set for the row.
info - The specified row's information.
Throws:
TableException - Provides a catch-all for all non-RuntimeExceptions.
java.lang.IndexOutOfBoundsException - Thrown if index is negative, zero, or greater than the number of rows.



Copyright © 2009 SAS Institute Inc. All Rights Reserved.