/** * @tests {@link javax.sql.RowSet#addRowSetListener(javax.sql.RowSetListener)}. */ @TestTargetNew( level = TestLevel.NOT_FEASIBLE, notes = "", method = "addRowSetListener", args = {javax.sql.RowSetListener.class} ) public void testAddRowSetListener() { fail("Not yet implemented"); }
@TestTargetNew( level = TestLevel.NOT_FEASIBLE, notes = "", method = "removeRowSetListener", args = {javax.sql.RowSetListener.class} ) public void testRemoveRowSetListener() { fail("Not yet implemented"); }
protected void notifyCursorMoved() throws SQLException { if (!(this instanceof RowSet)) { throw new SQLException(); } if (listeners.isEmpty()) { return; } for (RowSetListener listener : listeners) { listener.cursorMoved(new RowSetEvent((RowSet) this)); } }
protected void notifyRowChanged() throws SQLException { if (!(this instanceof RowSet)) { throw new SQLException(); } if (listeners.isEmpty()) { return; } for (RowSetListener listener : listeners) { listener.rowChanged(new RowSetEvent((RowSet) this)); } }
protected void notifyRowSetChanged() throws SQLException { if (!(this instanceof RowSet)) { throw new SQLException(); } if (listeners.isEmpty()) { return; } for (RowSetListener listener : listeners) { listener.rowSetChanged(new RowSetEvent((RowSet) this)); } }
@Override public void addRowSetListener(RowSetListener listener) { throw new UnsupportedOperationException("Not supported yet."); }
@Override public void removeRowSetListener(RowSetListener listener) { throw new UnsupportedOperationException("Not supported yet."); }