com.businessobjects.sdk.plugin.desktop.overload
Interface IRowsOverload

All Superinterfaces:
java.util.Collection, ISDKList, java.lang.Iterable, java.util.List

public interface IRowsOverload
extends ISDKList

This interface defines a collection that contains IRowOverload objects.


Method Summary
 IRowOverload add(int restrictedTableID, java.lang.String whereClause)
           Adds a new IRowOverload object to the collection.
 IRowOverload add(java.lang.String restrictedTableName, java.lang.String whereClause)
           Adds a new IRowOverload object to the collection.
 
Methods inherited from interface com.crystaldecisions.sdk.properties.ISDKList
get
 
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, retainAll, set, size, subList, toArray, toArray
 

Method Detail

add

IRowOverload add(int restrictedTableID,
                 java.lang.String whereClause)

Adds a new IRowOverload object to the collection.

Parameters:
restrictedTableID - An int that specifies the ID of the database table.
whereClause - A String that contains a SQL Where clause. This string is appended to the query to restrict certain rows from being accessed.
Returns:
An IRowOverload object.
See Also:
IOverloadBase.getRestrictedRows(), IRowOverload

add

IRowOverload add(java.lang.String restrictedTableName,
                 java.lang.String whereClause)

Adds a new IRowOverload object to the collection.

Parameters:
restrictedTableName - A String that specifies the name of the database table.
whereClause - A String that contains a SQL Where clause. This string is appended to the query to restrict certain rows from being accessed.
Returns:
An IRowOverload object.
See Also:
IOverloadBase.getRestrictedRows(), IRowOverload