Searched refs:column (Results 76 - 100 of 157) sorted by relevance

1234567

/openjdk10/jdk/src/java.sql.rowset/share/classes/javax/sql/rowset/
H A DCachedRowSet.java148 * object, demonstrate how to iterate through the rows, retrieving the column
150 * getter methods that take a column number; the second example
151 * uses the version that takes a column name. Column numbers are generally
153 * is of the form <code>SELECT * FROM TABLENAME</code>; column names are most
185 * the third line gets the JDBC type of values stored in the second column of
201 * object. For example, methods retrieving whether a column value is writable
220 * the code required to update two column values in the current row and also
233 * either a column index or a column name to designate the column bein
1038 toCollection(int column) argument
1067 toCollection(String column) argument
[all...]
/openjdk10/jdk/test/javax/swing/JTable/SorterIOOBEtest/
H A DDefaultRowSorterIOOBEtest.java110 public Object getValueAt(int row, int column) { argument
111 return tableModel.getValueAt(row, column);
/openjdk10/langtools/test/tools/javadoc/T4994049/
H A DT4994049.java27 * @summary Unit test for SourcePosition.column with respect to tab expansion
43 if (method.position().column() == 21) {
44 System.out.println(method.position().column() + ": OK!");
/openjdk10/nashorn/samples/
H A Dfindproto.js69 var column = this.lineMap.getColumnNumber(pos);
70 print("WARNING: __proto__ usage in " + file + " @ " + line + ":" + column);
H A Dbreakcontinue_in_tryfinally.js68 var column = this.lineMap.getColumnNumber(pos);
69 print(msg + " found in " + file + " @ " + line + ":" + column);
H A Dflexijson.js106 var column = this.lineMap.getColumnNumber(pos);
107 // we introduced extra '(' at start. So, adjust column number
108 msg = msg + " @ " + line + ":" + (column - 1);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DJTable.java137 * the column and row indexes returned by various <code>JTable</code> methods
145 * internally and converts its column indices before querying the model.
147 * So, when writing a <code>TableModel</code>, it is not necessary to listen for column
237 /** Do not adjust column widths automatically; use a horizontal scrollbar instead. */
240 /** When a column is adjusted in the UI, adjust the next column the opposite way. */
247 /** During all resize operations, apply adjustments to the last column only. */
337 * If true, both a row selection and a column selection
339 * the cells whose row and column are both selected.
353 /** Identifies the column o
2349 isColumnSelected(int column) argument
2363 isCellSelected(int row, int column) argument
2697 getColumnName(int column) argument
2709 getColumnClass(int column) argument
2728 getValueAt(int row, int column) argument
2752 setValueAt(Object aValue, int row, int column) argument
2776 isCellEditable(int row, int column) argument
2841 moveColumn(int column, int targetColumn) argument
2937 getCellRect(int row, int column, boolean includeSpacing) argument
3485 editCellAt(int row, int column) argument
3506 editCellAt(int row, int column, EventObject e) argument
5424 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
5506 getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) argument
5705 getCellRenderer(int row, int column) argument
5740 prepareRenderer(TableCellRenderer renderer, int row, int column) argument
5784 getCellEditor(int row, int column) argument
5811 prepareEditor(TableCellEditor editor, int row, int column) argument
7689 getAccessibleAt(int row, int column) argument
8050 private int column; field in class:JTable.AccessibleJTable.AccessibleJTableCell
8884 private int column; field in class:JTable.AccessibleJTable.AccessibleJTableHeaderCell
8896 AccessibleJTableHeaderCell(int row, int column, JTableHeader parent, Component rendererComponent) argument
[all...]
H A DDefaultCellEditor.java268 int row, int column) {
277 TableCellRenderer renderer = table.getCellRenderer(row, column);
279 isSelected, true, row, column);
266 getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) argument
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/treetable/
H A DJTreeTable.java42 * particular column in the JTable.
162 * if the receiver is editing a Tree column, the editors bounds is
198 * the column contains the tree. This is done as the tree editor does
202 public boolean editCellAt(int row, int column, EventObject e){ argument
203 boolean retValue = super.editCellAt(row, column, e);
204 if (retValue && getColumnClass(column) == TreeTableModel.class) {
205 repaint(getCellRect(row, column, false));
302 int row, int column) {
315 if (realEditingRow() == row && getEditingColumn() == column) {
322 if (isCellEditable(row, column)) {
298 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/
H A DProcessListPanel.java95 int column = table.convertColumnIndexToModel(viewColumn);
96 if (column != -1) {
97 boolean newSortByName = (column == 0);
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/transform/
H A DTransformerException.java258 int column = locator.getColumnNumber();
270 if (0 != column) {
272 sbuffer.append(column);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/table/
H A DDefaultTableCellRenderer.java183 * <code>[row, column]</code>
187 * @param column the column of the cell to render
192 boolean isSelected, boolean hasFocus, int row, int column) {
205 && dropLocation.getColumn() == column) {
246 if (!isSelected && table.isCellEditable(row, column)) {
191 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DSchemaDOM.java67 int line, int column, int offset) {
68 ElementImpl node = new ElementImpl(line, column, offset);
76 int line, int column, int offset) {
77 ElementImpl node = new ElementImpl(line, column, offset);
83 int line, int column) {
84 return startElement(element, attributes, line, column, -1);
88 int line, int column) {
89 return emptyElement(element, attributes, line, column, -1);
66 startElement(QName element, XMLAttributes attributes, int line, int column, int offset) argument
75 emptyElement(QName element, XMLAttributes attributes, int line, int column, int offset) argument
82 startElement(QName element, XMLAttributes attributes, int line, int column) argument
87 emptyElement(QName element, XMLAttributes attributes, int line, int column) argument
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicTableUI.java259 * row or column selection is allowed). When performing modifications,
278 // both column and row selection
292 // column selection only
361 * Find the next lead row and column based on the given
664 //Set the header's selected column to match the table.
977 // The row and column where the press occurred and the
1265 int column = table.columnAtPoint(p);
1268 if ((column == -1) || (row == -1)) {
1272 table.changeSelection(row, column,
1352 private boolean pointOutsidePrefSize(int row, int column, Poin argument
2176 paintCell(Graphics g, Rectangle cellRect, int row, int column) argument
[all...]
/openjdk10/jdk/test/javax/swing/JInternalFrame/
H A DTest6505027.java62 private static final String[] COLUMNS = { "Size", "Shape" }; // NON-NLS: column names
88 TableColumn column = this.table.getColumn(COLUMNS[1]);
89 column.setCellEditor(new DefaultCellEditor(new JComboBox(ITEMS)));
/openjdk10/jdk/test/javax/swing/JTable/7068740/
H A Dbug7068740.java63 public Object getValueAt(int row, int column) {
64 return "(" + row + "," + column + ")";
/openjdk10/jdk/test/javax/imageio/metadata/
H A DMetadataFormatPrinter.java45 private int column = 0; field in class:MetadataFormatPrinter
64 column = 0;
69 column = 0;
77 if (column + length > maxColumn) {
86 column += length + 1;
92 if (column + length > maxColumn) {
98 column += length;
117 column += 2;
/openjdk10/hotspot/src/share/vm/utilities/
H A Djson.hpp82 uint column; member in class:JSON
/openjdk10/jdk/src/java.desktop/share/classes/sun/swing/table/
H A DDefaultTableCellHeaderRenderer.java59 boolean isSelected, boolean hasFocus, int row, int column) {
93 SortOrder sortOrder = getColumnSortOrder(table, column);
129 public static SortOrder getColumnSortOrder(JTable table, int column) { argument
137 table.convertColumnIndexToModel(column)) {
149 //aligned, or if the column is too narrow, then the text will
58 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/impl/scd/
H A DTokenMgrError.java117 * errorColumn : column number when the error occured
124 errorLine + ", column " +
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/parse/compact/
H A DTokenMgrError.java147 * errorColumn : column number when the error occurred
154 errorLine + ", column " +
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/example/debug/expr/
H A DTokenMgrError.java127 * errorColumn : column number when the error occurred
134 errorLine + ", column " +
/openjdk10/jdk/test/java/awt/print/PageFormat/
H A DImageableAreaTest.java265 public String getColumnName(int column) {
266 return headers[column];
273 public void setValueAt(Object aValue, int row, int column) {
274 data[row][column] = aValue;
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DSourcePositionImpl.java35 * A source position: filename, line number, and column number.
74 /** The column in the source file. The first column is
75 * numbered 1; 0 means no column information is available.
77 * advances the column number to the next 8-column tab stop.
79 public int column() { method in class:SourcePositionImpl
/openjdk10/jdk/src/java.desktop/unix/native/common/java2d/x11/
H A DX11FontScaler_md.c97 int column; local
101 for (column = 0; column < width; ++column) {
102 int pixel = ximage->f.get_pixel(ximage, column, row);

Completed in 299 milliseconds

1234567