Searched defs:endRow (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DRowSorter.java235 * @param endRow the last row
237 * <code>firstRow</code> &gt; <code>endRow</code>
239 public abstract void rowsInserted(int firstRow, int endRow); argument
254 * @param endRow the last row
257 * <code>firstRow</code> &gt; <code>endRow</code>
259 public abstract void rowsDeleted(int firstRow, int endRow); argument
269 * @param endRow the last row, in terms of the underlying model
272 * <code>firstRow</code> &gt; <code>endRow</code>
274 public abstract void rowsUpdated(int firstRow, int endRow); argument
284 * @param endRow th
293 rowsUpdated(int firstRow, int endRow, int column) argument
[all...]
H A DDefaultRowSorter.java860 public void rowsInserted(int firstRow, int endRow) { argument
861 checkAgainstModel(firstRow, endRow);
863 if (endRow >= newModelRowCount) {
867 if (shouldOptimizeChange(firstRow, endRow)) {
868 rowsInserted0(firstRow, endRow);
877 public void rowsDeleted(int firstRow, int endRow) { argument
878 checkAgainstModel(firstRow, endRow);
879 if (firstRow >= modelRowCount || endRow >= modelRowCount) {
883 if (shouldOptimizeChange(firstRow, endRow)) {
884 rowsDeleted0(firstRow, endRow);
893 rowsUpdated(int firstRow, int endRow) argument
913 rowsUpdated(int firstRow, int endRow, int column) argument
918 checkAgainstModel(int firstRow, int endRow) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsTreeUI.java65 * Ensures that the rows identified by beginRow through endRow are
68 protected void ensureRowsAreVisible(int beginRow, int endRow) { argument
69 if(tree != null && beginRow >= 0 && endRow < getRowCount(tree)) {
71 if(beginRow == endRow) {
89 for(int counter = beginRow + 1; counter <= endRow; counter++) {
93 counter = endRow;
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRegion.java369 endRow(box);
837 endRow(box);
933 endRow(box);
963 private void endRow(int box[]) { method in class:Region
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java1927 * Ensures that the rows identified by beginRow through endRow are
1930 protected void ensureRowsAreVisible(int beginRow, int endRow) { argument
1931 if(tree != null && beginRow >= 0 && endRow < getRowCount(tree)) {
1934 if(beginRow == endRow) {
1955 for(int counter = beginRow + 1; counter <= endRow; counter++) {
1962 counter = endRow;

Completed in 50 milliseconds