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

/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXMBeanInfo.java195 Object rowData[] = new Object[2];
196 rowData[0] = new TableRowDivider(text);
197 rowData[1] = new TableRowDivider("");
198 tableModel.addRow(rowData);
200 rowData[0] = fieldName;
203 rowData[1] = Arrays.toString((boolean[]) fieldValue);
205 rowData[1] = Arrays.toString((byte[]) fieldValue);
207 rowData[1] = Arrays.toString((char[]) fieldValue);
209 rowData[1] = Arrays.toString((double[]) fieldValue);
211 rowData[
[all...]
H A DXMBeanAttributes.java746 Object rowData[] = new Object[2];
750 rowData[0] = (attributesInfo[i].getName());
751 if (unavailableAttributes.containsKey(rowData[0])) {
752 rowData[1] = Messages.UNAVAILABLE;
753 } else if (viewableAttributes.containsKey(rowData[0])) {
754 rowData[1] = viewableAttributes.get(rowData[0]);
757 rowData[1] = getZoomedCell(mbean, (String) rowData[0], rowData[
[all...]
H A DXOpenTypeViewer.java390 Object[] rowData = new Object[2];
394 rowData[0] = formatKey(key);
396 rowData[1] = "";
400 rowData[1] =
403 rowData[1] =
406 rowData[1] = val;
408 rowData[1] = new XTabularData(this, (TabularData) val);
413 if (rowData[0] != null) {
414 str = rowData[0].toString();
419 if (rowData[
[all...]
H A DXMBeanNotifications.java314 DefaultMutableTreeNode node, Object[] rowData, long received) {
318 tableModel.insertRow(0, rowData);
334 for (Object[] rowData : data) {
335 tableModel.addRow(rowData);
685 Object[] rowData = {
695 data.add(0, rowData);
699 xmbean, node, rowData, received);
312 fireNotificationReceived( XMBeanNotificationsListener listener, XMBean mbean, DefaultMutableTreeNode node, Object[] rowData, long received) argument
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DOldJTable.java110 public void addRow(Object[] rowData) { argument
112 ((DefaultTableModel)getModel()).addRow(rowData);
115 public void addRow(List rowData) { argument
117 ((DefaultTableModel)getModel()).addRow(rowData.toArray());
130 public void insertRow(int rowIndex, Object[] rowData) { argument
132 ((DefaultTableModel)getModel()).insertRow(rowIndex, rowData);
135 public void insertRow(int rowIndex, List rowData) { argument
137 ((DefaultTableModel)getModel()).insertRow(rowIndex, rowData.toArray());
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DDefaultTableModel.java344 * <code>null</code> values unless <code>rowData</code> is specified.
347 * @param rowData optional data of the row being added
349 public void addRow(Vector rowData) { argument
350 insertRow(getRowCount(), rowData);
355 * <code>null</code> values unless <code>rowData</code> is specified.
358 * @param rowData optional data of the row being added
360 public void addRow(Object[] rowData) { argument
361 addRow(convertToVector(rowData));
366 * will contain <code>null</code> values unless <code>rowData</code>
370 * @param rowData optiona
373 insertRow(int row, Vector rowData) argument
388 insertRow(int row, Object[] rowData) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java655 * <code>Vector</code> of <code>Vectors</code>, <code>rowData</code>,
657 * <code>Vectors</code> contained in <code>rowData</code>
662 * <pre>((Vector)rowData.elementAt(1)).elementAt(5);</pre>
664 * @param rowData the data for the new table
667 public JTable(Vector rowData, Vector columnNames) { argument
668 this(new DefaultTableModel(rowData, columnNames));
673 * <code>rowData</code>, with column names, <code>columnNames</code>.
674 * <code>rowData</code> is an array of rows, so the value of the cell at row 1,
677 * <pre> rowData[1][5]; </pre>
681 * @param rowData th
684 JTable(final Object[][] rowData, final Object[] columnNames) argument
[all...]

Completed in 64 milliseconds