Searched refs:column (Results 1 - 25 of 120) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/java/sql/
H A DResultSetMetaData.java33 * to find out how many columns rs has and whether the first column in rs
56 * Indicates whether the designated column is automatically numbered.
58 * @param column the first column is 1, the second is 2, ...
62 boolean isAutoIncrement(int column) throws SQLException; argument
65 * Indicates whether a column's case matters.
67 * @param column the first column is 1, the second is 2, ...
71 boolean isCaseSensitive(int column) throws SQLException; argument
74 * Indicates whether the designated column ca
80 isSearchable(int column) argument
89 isCurrency(int column) argument
99 isNullable(int column) argument
126 isSigned(int column) argument
136 getColumnDisplaySize(int column) argument
149 getColumnLabel(int column) argument
158 getColumnName(int column) argument
167 getSchemaName(int column) argument
181 getPrecision(int column) argument
191 getScale(int column) argument
200 getTableName(int column) argument
210 getCatalogName(int column) argument
220 getColumnType(int column) argument
230 getColumnTypeName(int column) argument
239 isReadOnly(int column) argument
248 isWritable(int column) argument
257 isDefinitelyWritable(int column) argument
276 getColumnClassName(int column) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DSimpleTreeTableModel.java31 TreeTableModel interface. It supports a two-column "Name, Value"
32 interface and disabling of editing of the "Value" column. Because
34 "true" for isCellEditable of cells in the "Name" column;
45 public String getColumnName(int column) { argument
46 switch (column) {
49 default: throw new RuntimeException("Index " + column + " out of bounds");
52 public Class getColumnClass(int column) { argument
53 switch (column) {
56 default: throw new RuntimeException("Index " + column + " out of bounds");
59 public Object getValueAt(Object node, int column) { argument
67 isCellEditable(Object node, int column) argument
76 setValueAt(Object aValue, Object node, int column) argument
[all...]
H A DTreeTableModel.java32 * node in the TreeTableModel may have. Each column, like a column in
43 * Returns the number ofs availible column.
48 * Returns the name for column number <code>column</code>.
50 public String getColumnName(int column); argument
53 * Returns the type for column number <code>column</code>.
55 public Class getColumnClass(int column); argument
59 * at column numbe
61 getValueAt(Object node, int column) argument
67 isCellEditable(Object node, int column) argument
73 setValueAt(Object aValue, Object node, int column) argument
[all...]
H A DTreeTableModelAdapter.java95 public String getColumnName(int column) { argument
96 return treeTableModel.getColumnName(column);
99 public Class getColumnClass(int column) { argument
100 return treeTableModel.getColumnClass(column);
112 public Object getValueAt(int row, int column) { argument
113 return treeTableModel.getValueAt(nodeForRow(row), column);
116 public boolean isCellEditable(int row, int column) { argument
117 return treeTableModel.isCellEditable(nodeForRow(row), column);
120 public void setValueAt(Object value, int row, int column) { argument
121 treeTableModel.setValueAt(value, nodeForRow(row), column);
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DTableStringConverter.java41 * @param column the column the string is being requested for
47 public abstract String toString(TableModel model, int row, int column); argument
H A DTableCellRenderer.java48 * see if the given row and column represent the drop location:
55 * && dropLocation.getColumn() == column) {
88 * @param column the column index of the cell being drawn
93 int row, int column);
91 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
H A DTableRowSorter.java43 * gesture, such as clicking on the column header, the table will
70 * chosen for a column:
72 * <li>If a <code>Comparator</code> has been specified for the column by the
74 * <li>If the column class as returned by <code>getColumnClass</code> is
77 * <li>If the column class implements <code>Comparable</code>, use a
103 * column, current sort order, and whether each column is sortable. The default
113 * <b>WARNING:</b> <code>DefaultTableModel</code> returns a column
116 * expensive. If the column only contains one type of value, such as
203 * column
216 getComparator(int column) argument
236 useToString(int column) argument
268 getValueAt(int row, int column) argument
272 getStringValueAt(int row, int column) argument
[all...]
H A DAbstractTableModel.java45 * public Object getValueAt(int row, int column);
74 * Returns a default name for the column using spreadsheet conventions:
75 * A, B, C, ... Z, AA, AB, etc. If <code>column</code> cannot be found,
78 * @param column the column being queried
79 * @return a string containing the default name of <code>column</code>
81 public String getColumnName(int column) { argument
83 for (; column >= 0; column = column / 2
274 fireTableCellUpdated(int row, int column) argument
[all...]
H A DTableCellEditor.java66 * @param column the column of the cell being edited
71 int row, int column);
69 getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) argument
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DSmartGridLayout.java70 for (int column = 0; column < columns; column++) {
71 columnWidths[column] = computeColumnWidth(column);
79 for (int column = 0; column < columns; column++) {
83 Component current = layoutGrid[column][row];
85 current.setBounds(horizLoc, vertLoc, columnWidths[column], rowHeight
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DSimpleLocator.java35 int line, column; field in class:SimpleLocator
41 public SimpleLocator(String lsid, String esid, int line, int column) { argument
42 this(lsid, esid, line, column, -1);
45 public void setValues(String lsid, String esid, int line, int column) { argument
46 setValues(lsid, esid, line, column, -1);
49 public SimpleLocator(String lsid, String esid, int line, int column, int offset) { argument
51 this.column = column;
57 public void setValues(String lsid, String esid, int line, int column, int offset) { argument
59 this.column
[all...]
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DSourcePosition.java32 * and column number.
46 /** The column in the source file. The first column is
47 * numbered 1; 0 means no column information is available.
49 * advances the column number to the next 8-column tab stop.
51 int column(); method in interface:SourcePosition
/openjdk7/langtools/src/share/classes/com/sun/mirror/util/
H A DSourcePosition.java68 * Returns the column number of this position. Columns are numbered
71 * @return the column number of this position, or 0 if the column
74 int column(); method in interface:SourcePosition
/openjdk7/langtools/src/share/classes/com/sun/source/tree/
H A DLineMap.java47 * Find the position corresponding to a (line,column).
50 * @param column tab-expanded column number (beginning 1)
57 long getPosition(long line, long column); argument
69 * Find the column for a character position.
71 * will be expanded when calculating the column number.
74 * @return the tab-expanded column number of pos (first column is 1)
/openjdk7/jdk/src/share/classes/sun/tools/jstat/resources/
H A Djstat_options27 column {
38 column {
46 column {
54 column {
62 column {
70 column {
81 column {
89 column {
97 column {
105 column {
[all...]
H A Djstat_unsupported_options27 column {
35 column {
43 column {
51 column {
59 column {
67 column {
75 column {
83 column {
91 column {
99 column {
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DRowSorter.java47 * the user clicked a column header in a table.
112 * Reverses the sort order of the specified column. It is up to
115 * descending to ascending) if the specified column is already the
116 * primary sorted column; otherwise, makes the specified column
117 * the primary sorted column, with an ascending sort order. If
118 * the specified column is not sortable, this method has no
125 * @param column the column to toggle the sort ordering of, in
127 * @throws IndexOutOfBoundsException if column i
130 toggleSortOrder(int column) argument
293 rowsUpdated(int firstRow, int endRow, int column) argument
354 private int column; field in class:RowSorter.SortKey
366 SortKey(int column, SortOrder sortOrder) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DTableModelEvent.java90 protected int column; field in class:TableModelEvent
102 * The structure of the table ie, the column names, types and order
132 * The cells in column <I>column</I> in the range
135 public TableModelEvent(TableModel source, int firstRow, int lastRow, int column) { argument
136 this(source, firstRow, lastRow, column, UPDATE);
140 * The cells from (firstRow, column) to (lastRow, column) have been changed.
141 * The <I>column</I> refers to the column inde
147 TableModelEvent(TableModel source, int firstRow, int lastRow, int column, int type) argument
[all...]
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableSorter.java93 public int compareRowsByColumn(int row1, int row2, int column) { argument
94 Class type = model.getColumnClass(column);
99 Object o1 = data.getValueAt(row1, column);
100 Object o2 = data.getValueAt(row2, column);
118 Number n1 = (Number) data.getValueAt(row1, column);
120 Number n2 = (Number) data.getValueAt(row2, column);
131 Date d1 = (Date) data.getValueAt(row1, column);
133 Date d2 = (Date) data.getValueAt(row2, column);
144 String s1 = (String) data.getValueAt(row1, column);
145 String s2 = (String) data.getValueAt(row2, column);
314 sortByColumn(int column) argument
318 sortByColumn(int column, boolean ascending) argument
[all...]
H A DJDBCAdapter.java97 // Get the column names and cache them.
99 for (int column = 0; column < numberOfColumns; column++) {
100 columnNames[column] = metaData.getColumnLabel(column + 1);
141 public String getColumnName(int column) { argument
142 if (columnNames[column] != null) {
143 return columnNames[column];
150 public Class<?> getColumnClass(int column) { argument
188 isCellEditable(int row, int column) argument
210 dbRepresentation(int column, Object value) argument
239 setValueAt(Object value, int row, int column) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DPosition.java35 * Support is also provided for (line,column) coordinates, but tab
62 /** A two-way map between line/column numbers and positions,
81 /** Encode line and column numbers in an integer as:
82 * line-number << LINESHIFT + column-number
88 * if the line or column number is too big to
96 throw new IllegalArgumentException("column must be greater than 0");
115 /** Find the position corresponding to a (line,column).
118 * @param column number of character on line (first is 1)
125 int getPosition(int line, int column); argument
135 /** Find the column fo
181 getPosition(int line, int column) argument
185 getPosition(long line, long column) argument
268 getPosition(int line, int column) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/table/
H A DSortHeaderMouseAdapter.java38 * for mouse clicks on a column and sorts that column.
57 int column = table.convertColumnIndexToModel(viewColumn);
58 if (evt.getClickCount() == 1 && column != -1) {
60 model.sortByColumn(column, !model.isAscending());
H A DSortableTableModel.java35 * of the list may be sortable by column. The TableModelComparator
54 public void sortByColumn(int column, boolean ascending) { argument
55 comparator.addColumn(column);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXTable.java63 * @param column the column against which the rows are sorted
65 void sortRequested(int column) { argument
95 public abstract boolean isColumnEditable(int column); argument
126 public String getToolTip(int row, int column) { argument
135 public TableCellRenderer getCellRenderer(int row, int column) { argument
137 (DefaultTableCellRenderer) super.getCellRenderer(row,column);
138 tcr.setToolTipText(getToolTip(row,column));
148 if (column != VALUE_COLUMN) {
152 if (isCellError(row,column)) {
163 prepareRenderer(TableCellRenderer renderer, int row, int column) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DPredicate.java99 * applications that use both column identification conventions.
132 * @param column a <code>int</code> object that must match the
133 * SQL index of a column in this <code>RowSet</code> object. This must
138 * @throws SQLException if the column is not part of filtering criteria
140 public boolean evaluate(Object value, int column) throws SQLException; argument
154 * SQL name of a column in this <code>RowSet</code>, ignoring case. This must
160 * @throws SQLException if the column is not part of filtering criteria

Completed in 3243 milliseconds

12345