Searched defs:Row (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DRow.java36 * A class that keeps track of a row's values. A <code>Row</code> object
49 public class Row extends BaseRow implements Serializable, Cloneable { class in inherits:BaseRow,Serializable,Cloneable
52 * An array containing the current column values for this <code>Row</code>
60 * this <code>Row</code> object, with each flag indicating whether or
67 * A <code>boolean</code> indicating whether or not this <code>Row</code>
75 * A <code>boolean</code> indicating whether or not this <code>Row</code>
83 * A <code>boolean</code> indicating whether or not this <code>Row</code>
91 * The number of columns in this <code>Row</code> object.
97 * Creates a new <code>Row</code> object with the given number of columns.
102 public Row(in method in class:Row
116 public Row(int numCols, Object[] vals) { method in class:Row
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultRowSorter.java121 private Row[] viewToModel;
675 Row[] oldViewToModel = viewToModel;
676 viewToModel = new Row[rowCount];
682 viewToModel = new Row[rowCount];
689 viewToModel[i] = new Row(this, i);
738 private int[] getViewToModelAsInts(Row[] viewToModel) {
995 private void insertInOrder(List<Row> toAdd, Row[] current) {
1035 List<Row> added = new ArrayList<Row>(delt
1366 private static class Row implements Comparable<Row> { class in class:DefaultRowSorter
1370 public Row(DefaultRowSorter sorter, int index) { method in class:DefaultRowSorter.Row
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DParagraphView.java362 if (child instanceof Row) {
363 Row row = (Row) child;
381 if (child instanceof Row) {
382 Row row = (Row) child;
395 return new Row(getElement());
836 class Row extends BoxView { class in class:ParagraphView
838 Row(Element elem) { method in class:ParagraphView.Row
994 * Whether we need to justify this {@code Row}
[all...]

Completed in 51 milliseconds