/openjdk7/jdk/src/share/classes/javax/sql/rowset/ |
H A D | Predicate.java | 99 * 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
|
/openjdk7/jdk/src/share/classes/javax/swing/table/ |
H A D | TableCellEditor.java | 66 * @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
|
H A D | TableStringConverter.java | 41 * @param column the column the string is being requested for 47 public abstract String toString(TableModel model, int row, int column); argument
|
H A D | TableCellRenderer.java | 48 * 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 D | TableRowSorter.java | 43 * 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...] |
/openjdk7/langtools/src/share/classes/com/sun/javadoc/ |
H A D | SourcePosition.java | 32 * 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 D | SourcePosition.java | 68 * 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/jdk/test/javax/swing/JTable/7055065/ |
H A D | bug7055065.java | 82 private static void clickCell(Robot robot, final int row, final int column) argument 87 Rectangle rect = table.getCellRect(row, column, false); 100 private static void clickColumnHeader(Robot robot, final int column) argument 105 Rectangle rect = table.getCellRect(0, column, false); 150 public String getColumnName(int column) { 151 return columnNames[column]; 162 public void setValueAt(Object aValue, int row, int column) { 163 data[row][column] = aValue;
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/table/ |
H A D | LongCellRenderer.java | 42 int row, int column) { 40 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
|
H A D | SortableTableModel.java | 35 * of the list may be sortable by column. The TableModelComparator 54 public void sortByColumn(int column, boolean ascending) { argument 55 comparator.addColumn(column);
|
H A D | SortHeaderCellRenderer.java | 34 * column state and renders arrow buttons to indicated the sorted column 73 int row, int column) { 77 if (column == model.getColumn()) { 71 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
|
H A D | TableModelComparator.java | 45 // XXX - Should actually listen for column changes and resize 51 * Add the column to the sort criteria 53 public void addColumn(int column) { argument 59 columns[0] = column; 63 * Get the last column that was sorted 119 * column. 122 * @param column the column to retrieve 124 public abstract Object getValueForColumn(Object obj, int column); argument
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/ |
H A D | TreeTableModel.java | 32 * 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 D | SimpleTreeTableModel.java | 31 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 D | TreeTableModelAdapter.java | 95 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/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/ |
H A D | DOMLocator.java | 35 private static final String column = "column"; field in class:DOMLocator 41 e.setAttributeNS(locationNamespace,"loc:"+column,Integer.toString(loc.getLineNumber())); 61 return Integer.parseInt(DOMUtil.getAttribute(e,locationNamespace,column));
|
/openjdk7/langtools/src/share/classes/com/sun/source/tree/ |
H A D | LineMap.java | 47 * 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/langtools/src/share/classes/com/sun/tools/apt/mirror/util/ |
H A D | SourcePositionImpl.java | 91 public int column() { method in class:SourcePositionImpl
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/ |
H A D | SourcePositionImpl.java | 35 * A source position: filename, line number, and column number. 68 /** The column in the source file. The first column is 69 * numbered 1; 0 means no column information is available. 71 * advances the column number to the next 8-column tab stop. 73 public int column() { method in class:SourcePositionImpl
|
/openjdk7/jdk/test/javax/swing/JTable/4220171/ |
H A D | bug4220171.java | 84 static void checkCell(final int row, final int column) throws Exception { argument 88 if (table.getValueAt(row, column) != null) { 90 String.format("Cell (%d, %d) is editable", row, column)); 96 static void clickMouse(Robot robot, int row, int column) throws Exception { argument 97 Point point = getCellClickPoint(row, column); 103 private static Point getCellClickPoint(final int row, final int column) throws Exception { argument 109 Rectangle rect = table.getCellRect(row, column, false);
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/ |
H A D | XSAnnotationInfo.java | 51 XSAnnotationInfo(String annotation, int line, int column, int charOffset) { argument 54 fColumn = column;
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/ |
H A D | SPARCV8Disassembler.java | 129 protected InstructionDecoder getFormat3Decoder(int row, int column) { argument 130 return format3Decoders[row][column]; 202 protected InstructionDecoder getFormat3ADecoder(int row, int column) { argument 203 return format3ADecoders[row][column];
|
H A D | SPARCV9Disassembler.java | 126 protected InstructionDecoder getFormat3Decoder(int row, int column) { argument 127 return format3Decoders[row][column]; 200 protected InstructionDecoder getFormat3ADecoder(int row, int column) { argument 201 return format3ADecoders[row][column];
|
/openjdk7/jdk/src/share/classes/javax/swing/event/ |
H A D | TableModelEvent.java | 90 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 D | TableMap.java | 102 public boolean isCellEditable(int row, int column) { argument 103 return model.isCellEditable(row, column);
|