Searched refs:columnIdx (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DJoinable.java143 * Implementations of the <code>setMatchColumn(int columnIdx)</code> method
147 * @param columnIdx an <code>int</code> identifying the index of the column to be
154 public void setMatchColumn(int columnIdx) throws SQLException; argument
177 * Implementations of the <code>setMatchColumn(String columnIdx)</code> method
240 * @param columnIdx an <code>int</code> that identifies the index of the column
247 public void unsetMatchColumn(int columnIdx) throws SQLException; argument
H A DJoinRowSet.java264 * @param columnIdx an <code>int</code> that identifies the column to become the
270 public void addRowSet(RowSet rowset, int columnIdx) throws SQLException; argument
300 * <i>columnIdx</i> is set as the match column for the first
302 * <i>columnIdx</i> is set as the match column for the second element
314 * @param columnIdx an array of <code>int</code> values indicating the index(es)
324 int[] columnIdx) throws SQLException;
323 addRowSet(RowSet[] rowset, int[] columnIdx) argument
/openjdk7/jdk/src/windows/classes/sun/awt/shell/
H A DWin32ShellFolder2.java1127 private native Object doGetColumnValue(long parentIShellFolder2, long childPIDL, int columnIdx); argument
1130 private static native int compareIDsByColumn(long pParentIShellFolder, long pidl1, long pidl2, int columnIdx); argument
1148 private final int columnIdx; field in class:Win32ShellFolder2.ColumnComparator
1150 public ColumnComparator(Win32ShellFolder2 shellFolder, int columnIdx) { argument
1152 this.columnIdx = columnIdx;
1165 columnIdx);
/openjdk7/jdk/src/windows/native/sun/windows/
H A DShellFolder2.cpp1180 jlong jpidl, jint columnIdx)
1195 hr = pIShellFolder2->GetDetailsOf(pidl, (UINT)columnIdx, &sd);
1207 hr = pIShellDetails->GetDetailsOf(pidl, (UINT)columnIdx, &sd);
1227 jlong pIDL1, jlong pIDL2, jint columnIdx)
1235 (UINT) columnIdx,
1178 Java_sun_awt_shell_Win32ShellFolder2_doGetColumnValue(JNIEnv *env, jobject obj, jlong iShellFolder, jlong jpidl, jint columnIdx) argument
1225 Java_sun_awt_shell_Win32ShellFolder2_compareIDsByColumn(JNIEnv* env, jclass cls, jlong jpParentIShellFolder, jlong pIDL1, jlong pIDL2, jint columnIdx) argument
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJoinRowSetImpl.java272 * @param columnIdx an <code>int</code> giving the index of the column to be set as
280 public void addRowSet(RowSet rowset, int columnIdx) throws SQLException { argument
281 //passing the rowset as well as the columnIdx to form the joinrowset.
283 ((CachedRowSetImpl)rowset).setMatchColumn(columnIdx);
310 //passing the rowset as well as the columnIdx to form the joinrowset.
324 * in <i>columnIdx</i> is used to set the match column for the first
326 * in <i>columnIdx</i> is used to set the match column for the second
335 * @param columnIdx an array of <code>int</code> values designating the columns
340 * in <i>columnIdx</i>
343 int[] columnIdx) throw
342 addRowSet(RowSet[] rowset, int[] columnIdx) argument
[all...]
H A DJdbcRowSetImpl.java3743 * parameter index is out of bounds or if the columnIdx is
3908 * @param columnIdx the index into this rowset
3915 public void setMatchColumn(int columnIdx) throws SQLException { argument
3917 if(columnIdx < 0) {
3921 iMatchColumns.set(0, Integer.valueOf(columnIdx));
3960 * @param columnIdx the index into this rowset
3963 * parameter index is out of bounds or if the columnIdx is
3966 public void unsetMatchColumn(int columnIdx) throws SQLException { argument
3968 if(! iMatchColumns.get(0).equals(Integer.valueOf(columnIdx) ) ) {
H A DCachedRowSetImpl.java6919 * parameter index is out of bounds or if the columnIdx is
7084 * @param columnIdx the index into this rowset
7091 public void setMatchColumn(int columnIdx) throws SQLException { argument
7093 if(columnIdx < 0) {
7097 iMatchColumns.set(0, Integer.valueOf(columnIdx));
7136 * @param columnIdx the index into this rowset
7139 * parameter index is out of bounds or if the columnIdx is
7142 public void unsetMatchColumn(int columnIdx) throws SQLException { argument
7144 if(! iMatchColumns.get(0).equals(Integer.valueOf(columnIdx) ) ) {
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java4530 * parameter index is out of bounds or if the columnIdx is
4633 * @param columnIdx the index into this rowset
4640 public void setMatchColumn(int columnIdx) throws SQLException { argument
4671 * @param columnIdx the index into this rowset
4674 * parameter index is out of bounds or if the columnIdx is
4677 public void unsetMatchColumn(int columnIdx) throws SQLException { argument

Completed in 107 milliseconds