| /solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/ |
| H A D | FlowTextArea.java | 50 public FlowTextArea(Document doc, String text, int rows, int columns) { argument 51 super(doc, text, rows, columns); 55 public FlowTextArea(int rows, int columns) { argument 56 super(rows, columns); 65 public FlowTextArea(String text, int rows, int columns) { argument 66 super(text, rows, columns);
|
| H A D | AutoHideTextArea.java | 103 public AutoHideTextArea(Document doc, String text, int rows, int columns) { argument 104 super(doc, text, rows, columns); 108 public AutoHideTextArea(int rows, int columns) { argument 109 super(rows, columns); 118 public AutoHideTextArea(String text, int rows, int columns) { argument 119 super(text, rows, columns);
|
| H A D | EditableTableTransferHandler.java | 68 private TableRow[] rows; field in class:EditableTableTransferHandler.TableData 74 public TableData(int tableHashCode, TableRow[] rows) { argument 76 this.rows = rows; 88 return rows; 179 TableRow[] rows = new TableRow[selectedRows.length]; 189 rows[i] = new TableRow(row, data); 193 new TableData(table.hashCode(), rows)); 220 TableRow[] rows = data.getRows(); 226 for (int i = rows [all...] |
| /solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/layout/ |
| H A D | TableLayout.java | 71 public TableLayout(int rows, int cols, int hGap, int vGap) { argument 72 this(createTableConstraints(rows, vGap), 76 public TableLayout(int rows, int cols) { argument 77 this(rows, cols, 0, 0); 111 // Not enough rows were specified 143 "invalid number of rows/columns: " + count); 157 int rows = 6; 160 // TableLayout layout = new TableLayout(rows, cols, gap, gap); 163 new AbstractTableConstraint[rows]; 164 for (int row = 0; row < rows; ro [all...] |
| H A D | AbstractTableLayout.java | 298 private RowOrColSet rows; field in class:AbstractTableLayout.TableInfo 304 public TableInfo(RowOrColSet cols, RowOrColSet rows) { argument 306 this.rows = rows; 308 // Remove rows/columns from layout if a) directed by constraints b) 310 for (RowOrColSet set : new RowOrColSet[] {rows, cols}) { 337 return rows; 385 RowOrColSet rows = info.getRows(); 386 int nRows = rows.getCount(); 405 // First set heights of rows [all...] |
| /solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/tree/ |
| H A D | TreeTableModelAdapter.java | 48 private List<ModelRowData> rows = new LinkedList<ModelRowData>(); field in class:TreeTableModelAdapter 94 return rows.size(); 165 synchronized (rows) { 188 synchronized (rows) { 208 synchronized (rows) { 215 rows.remove(j); 254 synchronized (rows) { 264 synchronized (rows) { 265 return rows.get(row); 270 synchronized (rows) { [all...] |