Searched refs:Row (Results 1 - 7 of 7) sorted by relevance

/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/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...]
H A DXmlReaderContentHandler.java1432 * The ResultSet's cursor is positioned at the Row which is needed
1434 * @return the <code>Row</code> object on which the <code>RowSet</code>
1437 private Row getPresentRow(WebRowSetImpl rs) throws SQLException {
1445 // return(new Row(numCols, vals));
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DUtilities.java43 import javax.swing.text.ParagraphView.Row;
139 justificationData[Row.SPACE_ADDON];
141 justificationData[Row.SPACE_ADDON_LEFTOVER_END] + offset;
143 justificationData[Row.START_JUSTIFIABLE] + offset;
145 justificationData[Row.END_JUSTIFIABLE] + offset;
239 justificationData[Row.SPACE_ADDON];
241 justificationData[Row.SPACE_ADDON_LEFTOVER_END] + offset;
243 justificationData[Row.START_JUSTIFIABLE] + offset;
245 justificationData[Row.END_JUSTIFIABLE] + offset;
358 justificationData[Row
[all...]
H A DGlyphPainter1.java240 if (parent instanceof ParagraphView.Row) {
241 ParagraphView.Row row = ((ParagraphView.Row) parent);
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...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DCachedRowSetImpl.java115 * A <code>Vector</code> object containing the <code>Row</code>
622 Row currentRow;
650 currentRow = new Row(numCols);
688 ((Row)currentRow).initColumnObject(i, obj);
959 Row currentRow;
961 currentRow = (Row)i.next();
1016 Row currentRow = (Row)getCurrentRow();
1046 Row currentRow = (Row)getCurrentRo
[all...]

Completed in 69 milliseconds