public class JTableOperator extends JComponentOperator implements Outputable, Timeoutable
Timeouts
Modifier and Type | Class and Description |
---|---|
static class |
JTableOperator.JTableByCellFinder
Allows to find component by cell text.
|
static class |
JTableOperator.JTableFinder
Checks component type.
|
static interface |
JTableOperator.TableCellChooser
Iterface to choose table cell.
|
JComponentOperator.JComponentByTipFinder, JComponentOperator.JComponentFinder
ContainerOperator.ContainerFinder
Operator.ComponentVisualizer, Operator.DefaultPathParser, Operator.DefaultStringComparator, Operator.Finder, Operator.MapAction, Operator.MapBooleanAction, Operator.MapByteAction, Operator.MapCharacterAction, Operator.MapDoubleAction, Operator.MapFloatAction, Operator.MapIntegerAction, Operator.MapLongAction, Operator.MapVoidAction, Operator.NoBlockingAction, Operator.PathParser, Operator.StringComparator
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CELL_PREFIX_DPROP
Identifier for a "cell" property.
|
static java.lang.String |
COLUMN_COUNT_DPROP
Identifier for a "column count" property.
|
static java.lang.String |
COLUMN_PREFIX_DPROP
Identifier for a "column" property.
|
static java.lang.String |
ROW_COUNT_DPROP
Identifier for a "row count" property.
|
static java.lang.String |
SELECTED_COLUMN_PREFIX_DPROP
Identifier for a "selected column" property.
|
static java.lang.String |
SELECTED_ROW_PREFIX_DPROP
Identifier for a "selected row" property.
|
A11Y_DATA, A11Y_DESCRIPTION_DPROP, A11Y_NAME_DPROP, TOOLTIP_TEXT_DPROP
HEIGHT_DPROP, IS_SHOWING_DPROP, IS_VISIBLE_DPROP, NAME_DPROP, WIDTH_DPROP, X_DPROP, Y_DPROP
CLASS_DPROP, TO_STRING_DPROP
Constructor and Description |
---|
JTableOperator(ContainerOperator cont)
Constructor.
|
JTableOperator(ContainerOperator cont,
ComponentChooser chooser)
Constructs a JTableOperator object.
|
JTableOperator(ContainerOperator cont,
ComponentChooser chooser,
int index)
Constructs a JTableOperator object.
|
JTableOperator(ContainerOperator cont,
int index)
Constructor.
|
JTableOperator(ContainerOperator cont,
java.lang.String text)
Constructor.
|
JTableOperator(ContainerOperator cont,
java.lang.String text,
int index)
Constructor.
|
JTableOperator(ContainerOperator cont,
java.lang.String text,
int row,
int column)
Constructor.
|
JTableOperator(ContainerOperator cont,
java.lang.String text,
int row,
int column,
int index)
Constructor.
|
JTableOperator(javax.swing.JTable b)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
addColumn(javax.swing.table.TableColumn tableColumn)
Maps
JTable.addColumn(TableColumn) through queue |
void |
addColumnSelectionInterval(int i,
int i1)
Maps
JTable.addColumnSelectionInterval(int, int) through queue |
void |
addRowSelectionInterval(int i,
int i1)
Maps
JTable.addRowSelectionInterval(int, int) through queue |
javax.swing.JPopupMenu |
callPopupOnCell(int row,
int column)
Calls popup menu on specified cell.
|
void |
changeCellObject(int row,
int column,
java.lang.Object newValue)
Changes value of the cell pointed by row and column indexes.
|
void |
changeCellText(int row,
int column,
java.lang.String newText)
Deprecated.
Use changeCellObject(int, int, Object) instead.
|
void |
clearSelection()
Maps
JTable.clearSelection() through queue |
void |
clickForEdit(int row,
int column)
Double clicks on cell to turns it to the editing mode.
|
void |
clickOnCell(int row,
int column)
Does single mouse click on the cell.
|
void |
clickOnCell(int row,
int column,
int clickCount)
Does mouse click on the cell by default mouse button with no modifiers.
|
void |
clickOnCell(int row,
int column,
int clickCount,
int button)
Does mouse click on the cell with no modifiers.
|
void |
clickOnCell(int row,
int column,
int clickCount,
int button,
int modifiers)
Does mouse click on the cell.
|
void |
columnAdded(javax.swing.event.TableColumnModelEvent tableColumnModelEvent)
Maps
JTable.columnAdded(TableColumnModelEvent) through queue |
int |
columnAtPoint(java.awt.Point point)
Maps
JTable.columnAtPoint(Point) through queue |
void |
columnMarginChanged(javax.swing.event.ChangeEvent changeEvent)
Maps
JTable.columnMarginChanged(ChangeEvent) through queue |
void |
columnMoved(javax.swing.event.TableColumnModelEvent tableColumnModelEvent)
Maps
JTable.columnMoved(TableColumnModelEvent) through queue |
void |
columnRemoved(javax.swing.event.TableColumnModelEvent tableColumnModelEvent)
Maps
JTable.columnRemoved(TableColumnModelEvent) through queue |
void |
columnSelectionChanged(javax.swing.event.ListSelectionEvent listSelectionEvent)
Maps
JTable.columnSelectionChanged(ListSelectionEvent) through queue |
int |
convertColumnIndexToModel(int i)
Maps
JTable.convertColumnIndexToModel(int) through queue |
int |
convertColumnIndexToView(int i)
Maps
JTable.convertColumnIndexToView(int) through queue |
void |
copyEnvironment(Operator anotherOperator)
Copies all environment (output, timeouts,
visualizer) from another operator.
|
void |
createDefaultColumnsFromModel()
Maps
JTable.createDefaultColumnsFromModel() through queue |
boolean |
editCellAt(int i,
int i1)
Maps
JTable.editCellAt(int, int) through queue |
boolean |
editCellAt(int i,
int i1,
java.util.EventObject eventObject)
Maps
JTable.editCellAt(int, int, EventObject) through queue |
void |
editingCanceled(javax.swing.event.ChangeEvent changeEvent)
Maps
JTable.editingCanceled(ChangeEvent) through queue |
void |
editingStopped(javax.swing.event.ChangeEvent changeEvent)
Maps
JTable.editingStopped(ChangeEvent) through queue |
java.awt.Point |
findCell(ComponentChooser chooser)
Searches cell coordinates.
|
java.awt.Point |
findCell(ComponentChooser chooser,
int index)
Searches cell coordinates.
|
java.awt.Point |
findCell(ComponentChooser chooser,
int[] rows,
int[] columns,
int index)
Searches cell coordinates.
|
java.awt.Point |
findCell(JTableOperator.TableCellChooser chooser)
Searches cell coordinates.
|
java.awt.Point |
findCell(JTableOperator.TableCellChooser chooser,
int index)
Searches cell coordinates.
|
java.awt.Point |
findCell(JTableOperator.TableCellChooser chooser,
int[] rows,
int[] columns,
int index)
Searches cell coordinates in the specified rows and columns.
|
java.awt.Point |
findCell(java.lang.String text,
int index)
Searches cell coordinates.
|
java.awt.Point |
findCell(java.lang.String text,
int[] rows,
int[] columns,
int index)
Searches cell coordinates in the specified rows and columns.
|
java.awt.Point |
findCell(java.lang.String text,
Operator.StringComparator comparator,
int index)
Searches cell coordinates.
|
java.awt.Point |
findCell(java.lang.String text,
Operator.StringComparator comparator,
int[] rows,
int[] columns,
int index)
Searches cell coordinates in the specified rows and columns.
|
int |
findCellColumn(ComponentChooser chooser)
Searches cell column by rendered component.
|
int |
findCellColumn(ComponentChooser chooser,
int index)
Searches cell column by rendered component.
|
int |
findCellColumn(ComponentChooser chooser,
int row,
int index)
Searches cell column index.
|
int |
findCellColumn(JTableOperator.TableCellChooser chooser)
Searches cell column by TableCellChooser.
|
int |
findCellColumn(JTableOperator.TableCellChooser chooser,
int index)
Searches cell column by TableCellChooser.
|
int |
findCellColumn(JTableOperator.TableCellChooser chooser,
int row,
int index)
Searches cell column index.
|
int |
findCellColumn(java.lang.String text)
Searches first cell column by cell text.
|
int |
findCellColumn(java.lang.String text,
boolean ce,
boolean ccs)
Deprecated.
Use findCellColumn(String) or findCellColumn(String, StringComparator)
|
int |
findCellColumn(java.lang.String text,
boolean ce,
boolean ccs,
int index)
Deprecated.
Use findCellColumn(String, int) or findCellColumn(String, StringComparator, int)
|
int |
findCellColumn(java.lang.String text,
int index)
Searches cell column by cell text.
|
int |
findCellColumn(java.lang.String text,
int row,
int index)
Searches cell column index.
|
int |
findCellColumn(java.lang.String text,
Operator.StringComparator comparator)
Searches cell column visible index.
|
int |
findCellColumn(java.lang.String text,
Operator.StringComparator comparator,
int index)
Searches cell column visible index.
|
int |
findCellColumn(java.lang.String text,
Operator.StringComparator comparator,
int row,
int index)
Searches cell column index.
|
int |
findCellRow(ComponentChooser chooser)
Searches cell row by rendered component.
|
int |
findCellRow(ComponentChooser chooser,
int index)
Searches cell row by rendered component.
|
int |
findCellRow(ComponentChooser chooser,
int column,
int index)
Searches cell row index.
|
int |
findCellRow(JTableOperator.TableCellChooser chooser)
Searches cell row by TableCellChooser.
|
int |
findCellRow(JTableOperator.TableCellChooser chooser,
int index)
Searches cell row by TableCellChooser.
|
int |
findCellRow(JTableOperator.TableCellChooser chooser,
int column,
int index)
Searches cell row index.
|
int |
findCellRow(java.lang.String text)
Searches first cell row by cell text.
|
int |
findCellRow(java.lang.String text,
boolean ce,
boolean ccs)
Deprecated.
Use findCellRow(String) or findCellRow(String, StringComparator)
|
int |
findCellRow(java.lang.String text,
boolean ce,
boolean ccs,
int index)
Deprecated.
Use findCellRow(String, int) or findCellRow(String, StringComparator, int)
|
int |
findCellRow(java.lang.String text,
int index)
Searches cell row by cell text.
|
int |
findCellRow(java.lang.String text,
int column,
int index)
Searches cell row index.
|
int |
findCellRow(java.lang.String text,
Operator.StringComparator comparator)
Searches cell row index.
|
int |
findCellRow(java.lang.String text,
Operator.StringComparator comparator,
int index)
Searches cell row index.
|
int |
findCellRow(java.lang.String text,
Operator.StringComparator comparator,
int column,
int index)
Searches cell row index.
|
int |
findColumn(java.lang.String name)
Searches a column by name.
|
int |
findColumn(java.lang.String name,
Operator.StringComparator comparator)
Searches a column by name.
|
static javax.swing.JTable |
findJTable(java.awt.Container cont,
ComponentChooser chooser)
Searches 0'th JTable in container.
|
static javax.swing.JTable |
findJTable(java.awt.Container cont,
ComponentChooser chooser,
int index)
Searches JTable in container.
|
static javax.swing.JTable |
findJTable(java.awt.Container cont,
java.lang.String text,
boolean ce,
boolean ccs,
int row,
int column)
Searches JTable by cell.
|
static javax.swing.JTable |
findJTable(java.awt.Container cont,
java.lang.String text,
boolean ce,
boolean ccs,
int row,
int column,
int index)
Searches JTable by cell.
|
boolean |
getAutoCreateColumnsFromModel()
Maps
JTable.getAutoCreateColumnsFromModel() through queue |
int |
getAutoResizeMode()
Maps
JTable.getAutoResizeMode() through queue |
javax.swing.table.TableCellEditor |
getCellEditor()
Maps
JTable.getCellEditor() through queue |
javax.swing.table.TableCellEditor |
getCellEditor(int i,
int i1)
Maps
JTable.getCellEditor(int, int) through queue |
java.awt.Rectangle |
getCellRect(int i,
int i1,
boolean b)
Maps
JTable.getCellRect(int, int, boolean) through queue |
javax.swing.table.TableCellRenderer |
getCellRenderer(int i,
int i1)
Maps
JTable.getCellRenderer(int, int) through queue |
boolean |
getCellSelectionEnabled()
Maps
JTable.getCellSelectionEnabled() through queue |
javax.swing.table.TableColumn |
getColumn(java.lang.Object object)
Maps
JTable.getColumn(Object) through queue |
java.lang.Class |
getColumnClass(int i)
Maps
JTable.getColumnClass(int) through queue |
int |
getColumnCount()
Maps
JTable.getColumnCount() through queue |
javax.swing.table.TableColumnModel |
getColumnModel()
Maps
JTable.getColumnModel() through queue |
java.lang.String |
getColumnName(int i)
Maps
JTable.getColumnName(int) through queue |
boolean |
getColumnSelectionAllowed()
Maps
JTable.getColumnSelectionAllowed() through queue |
javax.swing.table.TableCellEditor |
getDefaultEditor(java.lang.Class clss)
Maps
JTable.getDefaultEditor(Class) through queue |
javax.swing.table.TableCellRenderer |
getDefaultRenderer(java.lang.Class clss)
Maps
JTable.getDefaultRenderer(Class) through queue |
java.util.Hashtable |
getDump()
Returns information about component.
|
int |
getEditingColumn()
Maps
JTable.getEditingColumn() through queue |
int |
getEditingRow()
Maps
JTable.getEditingRow() through queue |
java.awt.Component |
getEditorComponent()
Maps
JTable.getEditorComponent() through queue |
java.awt.Color |
getGridColor()
Maps
JTable.getGridColor() through queue |
JTableHeaderOperator |
getHeaderOperator()
Creates an operator for a teble header assigned to this table.
|
java.awt.Dimension |
getIntercellSpacing()
Maps
JTable.getIntercellSpacing() through queue |
javax.swing.table.TableModel |
getModel()
Maps
JTable.getModel() through queue |
TestOut |
getOutput()
Returns print output streams or writers.
|
java.awt.Point |
getPointToClick(int row,
int column)
Returns a point at the center of the cell rectangle.
|
java.awt.Dimension |
getPreferredScrollableViewportSize()
Maps
JTable.getPreferredScrollableViewportSize() through queue |
java.awt.Component |
getRenderedComponent(int row,
int column)
Ask renderer for component to be displayed.
|
java.awt.Component |
getRenderedComponent(int row,
int column,
boolean isSelected,
boolean cellHasFocus)
Ask renderer for component to be displayed.
|
int |
getRowCount()
Maps
JTable.getRowCount() through queue |
int |
getRowHeight()
Maps
JTable.getRowHeight() through queue |
int |
getRowMargin()
Maps
JTable.getRowMargin() through queue |
boolean |
getRowSelectionAllowed()
Maps
JTable.getRowSelectionAllowed() through queue |
int |
getScrollableBlockIncrement(java.awt.Rectangle rectangle,
int i,
int i1)
Maps
JTable.getScrollableBlockIncrement(Rectangle, int, int) through queue |
boolean |
getScrollableTracksViewportHeight()
Maps
JTable.getScrollableTracksViewportHeight() through queue |
boolean |
getScrollableTracksViewportWidth()
Maps
JTable.getScrollableTracksViewportWidth() through queue |
int |
getScrollableUnitIncrement(java.awt.Rectangle rectangle,
int i,
int i1)
Maps
JTable.getScrollableUnitIncrement(Rectangle, int, int) through queue |
int |
getSelectedColumn()
Maps
JTable.getSelectedColumn() through queue |
int |
getSelectedColumnCount()
Maps
JTable.getSelectedColumnCount() through queue |
int[] |
getSelectedColumns()
Maps
JTable.getSelectedColumns() through queue |
int |
getSelectedRow()
Maps
JTable.getSelectedRow() through queue |
int |
getSelectedRowCount()
Maps
JTable.getSelectedRowCount() through queue |
int[] |
getSelectedRows()
Maps
JTable.getSelectedRows() through queue |
java.awt.Color |
getSelectionBackground()
Maps
JTable.getSelectionBackground() through queue |
java.awt.Color |
getSelectionForeground()
Maps
JTable.getSelectionForeground() through queue |
javax.swing.ListSelectionModel |
getSelectionModel()
Maps
JTable.getSelectionModel() through queue |
boolean |
getShowHorizontalLines()
Maps
JTable.getShowHorizontalLines() through queue |
boolean |
getShowVerticalLines()
Maps
JTable.getShowVerticalLines() through queue |
javax.swing.table.JTableHeader |
getTableHeader()
Maps
JTable.getTableHeader() through queue |
Timeouts |
getTimeouts()
Return current timeouts.
|
javax.swing.plaf.TableUI |
getUI()
Maps
JTable.getUI() through queue |
java.lang.Object |
getValueAt(int i,
int i1)
Maps
JTable.getValueAt(int, int) through queue |
boolean |
isCellEditable(int i,
int i1)
Maps
JTable.isCellEditable(int, int) through queue |
boolean |
isCellSelected(int i,
int i1)
Maps
JTable.isCellSelected(int, int) through queue |
boolean |
isColumnSelected(int i)
Maps
JTable.isColumnSelected(int) through queue |
boolean |
isEditing()
Maps
JTable.isEditing() through queue |
boolean |
isRowSelected(int i)
Maps
JTable.isRowSelected(int) through queue |
void |
moveColumn(int i,
int i1)
Maps
JTable.moveColumn(int, int) through queue |
java.awt.Component |
prepareEditor(javax.swing.table.TableCellEditor tableCellEditor,
int i,
int i1)
Maps
JTable.prepareEditor(TableCellEditor, int, int) through queue |
java.awt.Component |
prepareRenderer(javax.swing.table.TableCellRenderer tableCellRenderer,
int i,
int i1)
Maps
JTable.prepareRenderer(TableCellRenderer, int, int) through queue |
void |
removeColumn(javax.swing.table.TableColumn tableColumn)
Maps
JTable.removeColumn(TableColumn) through queue |
void |
removeColumnSelectionInterval(int i,
int i1)
Maps
JTable.removeColumnSelectionInterval(int, int) through queue |
void |
removeEditor()
Maps
JTable.removeEditor() through queue |
void |
removeRowSelectionInterval(int i,
int i1)
Maps
JTable.removeRowSelectionInterval(int, int) through queue |
int |
rowAtPoint(java.awt.Point point)
Maps
JTable.rowAtPoint(Point) through queue |
void |
scrollToCell(int row,
int column)
Scrolls to a cell if the table lies on a JScrollPane component.
|
void |
selectAll()
Maps
JTable.selectAll() through queue |
void |
selectCell(int row,
int column)
Selects a specified cell.
|
void |
setAutoCreateColumnsFromModel(boolean b)
Maps
JTable.setAutoCreateColumnsFromModel(boolean) through queue |
void |
setAutoResizeMode(int i)
Maps
JTable.setAutoResizeMode(int) through queue |
void |
setCellEditor(javax.swing.table.TableCellEditor tableCellEditor)
Maps
JTable.setCellEditor(TableCellEditor) through queue |
void |
setCellSelectionEnabled(boolean b)
Maps
JTable.setCellSelectionEnabled(boolean) through queue |
void |
setColumnModel(javax.swing.table.TableColumnModel tableColumnModel)
Maps
JTable.setColumnModel(TableColumnModel) through queue |
void |
setColumnSelectionAllowed(boolean b)
Maps
JTable.setColumnSelectionAllowed(boolean) through queue |
void |
setColumnSelectionInterval(int i,
int i1)
Maps
JTable.setColumnSelectionInterval(int, int) through queue |
void |
setDefaultEditor(java.lang.Class clss,
javax.swing.table.TableCellEditor tableCellEditor)
Maps
JTable.setDefaultEditor(Class, TableCellEditor) through queue |
void |
setDefaultRenderer(java.lang.Class clss,
javax.swing.table.TableCellRenderer tableCellRenderer)
Maps
JTable.setDefaultRenderer(Class, TableCellRenderer) through queue |
void |
setEditingColumn(int i)
Maps
JTable.setEditingColumn(int) through queue |
void |
setEditingRow(int i)
Maps
JTable.setEditingRow(int) through queue |
void |
setGridColor(java.awt.Color color)
Maps
JTable.setGridColor(Color) through queue |
void |
setIntercellSpacing(java.awt.Dimension dimension)
Maps
JTable.setIntercellSpacing(Dimension) through queue |
void |
setModel(javax.swing.table.TableModel tableModel)
Maps
JTable.setModel(TableModel) through queue |
void |
setOutput(TestOut out)
Defines print output streams or writers.
|
void |
setPreferredScrollableViewportSize(java.awt.Dimension dimension)
Maps
JTable.setPreferredScrollableViewportSize(Dimension) through queue |
void |
setRowHeight(int i)
Maps
JTable.setRowHeight(int) through queue |
void |
setRowMargin(int i)
Maps
JTable.setRowMargin(int) through queue |
void |
setRowSelectionAllowed(boolean b)
Maps
JTable.setRowSelectionAllowed(boolean) through queue |
void |
setRowSelectionInterval(int i,
int i1)
Maps
JTable.setRowSelectionInterval(int, int) through queue |
void |
setSelectionBackground(java.awt.Color color)
Maps
JTable.setSelectionBackground(Color) through queue |
void |
setSelectionForeground(java.awt.Color color)
Maps
JTable.setSelectionForeground(Color) through queue |
void |
setSelectionMode(int i)
Maps
JTable.setSelectionMode(int) through queue |
void |
setSelectionModel(javax.swing.ListSelectionModel listSelectionModel)
Maps
JTable.setSelectionModel(ListSelectionModel) through queue |
void |
setShowGrid(boolean b)
Maps
JTable.setShowGrid(boolean) through queue |
void |
setShowHorizontalLines(boolean b)
Maps
JTable.setShowHorizontalLines(boolean) through queue |
void |
setShowVerticalLines(boolean b)
Maps
JTable.setShowVerticalLines(boolean) through queue |
void |
setTableHeader(javax.swing.table.JTableHeader jTableHeader)
Maps
JTable.setTableHeader(JTableHeader) through queue |
void |
setTimeouts(Timeouts times)
Defines current timeouts.
|
void |
setUI(javax.swing.plaf.TableUI tableUI)
Maps
JTable.setUI(TableUI) through queue |
void |
setValueAt(java.lang.Object object,
int i,
int i1)
Maps
JTable.setValueAt(Object, int, int) through queue |
void |
tableChanged(javax.swing.event.TableModelEvent tableModelEvent)
Maps
JTable.tableChanged(TableModelEvent) through queue |
void |
valueChanged(javax.swing.event.ListSelectionEvent listSelectionEvent)
Maps
JTable.valueChanged(ListSelectionEvent) through queue |
void |
waitCell(java.lang.String cellText,
int row,
int column)
Waits for certain cell contents.
|
java.awt.Component |
waitCellComponent(ComponentChooser chooser,
int row,
int column)
Waits for an editor.
|
static javax.swing.JTable |
waitJTable(java.awt.Container cont,
ComponentChooser chooser)
Waits 0'th JTable in container.
|
static javax.swing.JTable |
waitJTable(java.awt.Container cont,
ComponentChooser chooser,
int index)
Waits JTable in container.
|
static javax.swing.JTable |
waitJTable(java.awt.Container cont,
java.lang.String text,
boolean ce,
boolean ccs,
int row,
int column)
Waits JTable by cell.
|
static javax.swing.JTable |
waitJTable(java.awt.Container cont,
java.lang.String text,
boolean ce,
boolean ccs,
int row,
int column,
int index)
Waits JTable by cell.
|
addAncestorListener, addVetoableChangeListener, computeVisibleRect, createToolTip, findJComponent, findJComponent, findJComponent, findJComponent, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getAccessibleContext, getActionForKeyStroke, getAutoscrolls, getBorder, getCenterXForClick, getCenterYForClick, getClientProperty, getConditionForKeyStroke, getDebugGraphicsOptions, getInsets, getNextFocusableComponent, getRegisteredKeyStrokes, getRootPane, getToolTipLocation, getToolTipText, getToolTipText, getTopLevelAncestor, getUIClassID, getVisibleRect, getWindowContainerOperator, grabFocus, isFocusCycleRoot, isManagingFocus, isOptimizedDrawingEnabled, isPaintingTile, isRequestFocusEnabled, isValidateRoot, paintImmediately, paintImmediately, putClientProperty, registerKeyboardAction, registerKeyboardAction, removeAncestorListener, removeVetoableChangeListener, repaint, requestDefaultFocus, resetKeyboardActions, revalidate, scrollRectToVisible, setAlignmentX, setAlignmentY, setAutoscrolls, setBorder, setDebugGraphicsOptions, setDoubleBuffered, setMaximumSize, setMinimumSize, setNextFocusableComponent, setOpaque, setPreferredSize, setRequestFocusEnabled, setToolTipText, showToolTip, unregisterKeyboardAction, updateUI, waitJComponent, waitJComponent, waitJComponent, waitJComponent, waitToolTip
add, add, add, add, add, addContainerListener, createSubOperator, createSubOperator, findComponentAt, findComponentAt, findContainer, findContainer, findContainer, findContainer, findContainerUnder, findContainerUnder, findSubComponent, findSubComponent, getComponent, getComponentCount, getComponents, getInsets, getLayout, isAncestorOf, paintComponents, printComponents, remove, remove, removeAll, removeContainerListener, setLayout, waitContainer, waitContainer, waitContainer, waitContainer, waitSubComponent, waitSubComponent
activateWindow, add, addComponentListener, addFocusListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addNotify, addPropertyChangeListener, addPropertyChangeListener, checkImage, checkImage, clickForPopup, clickForPopup, clickForPopup, clickForPopup, clickMouse, clickMouse, clickMouse, clickMouse, clickMouse, clickMouse, clickMouse, contains, contains, createImage, createImage, dispatchEvent, doLayout, dragMouse, dragMouse, dragMouse, dragNDrop, dragNDrop, dragNDrop, enableInputMethods, enterMouse, exitMouse, findComponent, findComponent, getAlignmentX, getAlignmentY, getBackground, getBounds, getBounds, getCenterX, getCenterY, getColorModel, getComponentAt, getComponentAt, getComponentOrientation, getContainer, getContainers, getCursor, getDropTarget, getEventDispatcher, getFocus, getFont, getFontMetrics, getForeground, getGraphics, getHeight, getInputContext, getInputMethodRequests, getLocale, getLocation, getLocation, getLocationOnScreen, getMaximumSize, getMinimumSize, getName, getParent, getPreferredSize, getSize, getSize, getSource, getToolkit, getTreeLock, getWidth, getWindow, getX, getY, hasFocus, imageUpdate, invalidate, isDisplayable, isDoubleBuffered, isEnabled, isFocusTraversable, isLightweight, isOpaque, isShowing, isValid, isVisible, list, list, list, list, list, makeComponentVisible, moveMouse, paint, paintAll, prepareImage, prepareImage, pressKey, pressKey, pressMouse, pressMouse, print, printAll, pushKey, pushKey, releaseKey, releaseKey, releaseMouse, releaseMouse, remove, removeComponentListener, removeFocusListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeNotify, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, repaint, requestFocus, setBackground, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setEnabled, setFont, setForeground, setLocale, setLocation, setLocation, setName, setSize, setSize, setVisible, transferFocus, typeKey, typeKey, typeKey, update, validate, waitComponent, waitComponent, waitComponent, waitComponent, waitComponentEnabled, waitComponentShowing, waitComponentVisible, waitHasFocus, wtComponentEnabled
addOperatorPackage, addToDump, addToDump, createOperator, getCharBindingMap, getCharKey, getCharModifiers, getCharsKeys, getCharsKeys, getCharsModifiers, getCharsModifiers, getComparator, getDefaultComponentVisualizer, getDefaultMouseButton, getDefaultPathParser, getDefaultStringComparator, getDefaultVerification, getEnvironmentOperator, getParentPath, getParentPath, getPathParser, getPopupMouseButton, getProperties, getQueueTool, getVerification, getVisualizer, isCaptionEqual, isCaptionEqual, isCaptionEqual, lockQueue, parseString, parseString, printDump, produceNoBlocking, produceNoBlocking, produceTimeRestricted, produceTimeRestricted, runMapping, runMapping, runMapping, runMapping, runMapping, runMapping, runMapping, runMapping, runMapping, setCharBindingMap, setComparator, setDefaultComponentVisualizer, setDefaultPathParser, setDefaultStringComparator, setDefaultVerification, setPathParser, setProperties, setVerification, setVisualizer, toStringSource, unlockAndThrow, unlockQueue, waitState
public static final java.lang.String CELL_PREFIX_DPROP
getDump()
,
Constant Field Valuespublic static final java.lang.String COLUMN_PREFIX_DPROP
getDump()
,
Constant Field Valuespublic static final java.lang.String SELECTED_COLUMN_PREFIX_DPROP
getDump()
,
Constant Field Valuespublic static final java.lang.String SELECTED_ROW_PREFIX_DPROP
getDump()
,
Constant Field Valuespublic static final java.lang.String COLUMN_COUNT_DPROP
getDump()
,
Constant Field Valuespublic static final java.lang.String ROW_COUNT_DPROP
getDump()
,
Constant Field Valuespublic JTableOperator(javax.swing.JTable b)
b
- a componentpublic JTableOperator(ContainerOperator cont, ComponentChooser chooser, int index)
cont
- a containerchooser
- a component chooser specifying searching criteria.index
- an index between appropriate ones.public JTableOperator(ContainerOperator cont, ComponentChooser chooser)
cont
- a containerchooser
- a component chooser specifying searching criteria.public JTableOperator(ContainerOperator cont, java.lang.String text, int row, int column, int index)
cont
- a containertext
- Text of a cell which is currently selected.row
- a cell row to check.column
- a cell row to check.index
- Ordinal component index.TimeoutExpiredException
Operator.isCaptionEqual(String, String, boolean, boolean)
public JTableOperator(ContainerOperator cont, java.lang.String text, int row, int column)
cont
- a containertext
- Text of a cell which is currently selected.row
- a cell row to check.column
- a cell row to check.TimeoutExpiredException
Operator.isCaptionEqual(String, String, boolean, boolean)
public JTableOperator(ContainerOperator cont, java.lang.String text, int index)
cont
- a containertext
- Text of a cell which is currently selected.index
- Ordinal component index.TimeoutExpiredException
Operator.isCaptionEqual(String, String, boolean, boolean)
public JTableOperator(ContainerOperator cont, java.lang.String text)
cont
- a containertext
- Text of a cell which is currently selected.TimeoutExpiredException
Operator.isCaptionEqual(String, String, boolean, boolean)
public JTableOperator(ContainerOperator cont, int index)
cont
- a containerindex
- Ordinal component index.TimeoutExpiredException
public JTableOperator(ContainerOperator cont)
cont
- a containerTimeoutExpiredException
public static javax.swing.JTable findJTable(java.awt.Container cont, ComponentChooser chooser, int index)
cont
- Container to search component in.chooser
- org.netbeans.jemmy.ComponentChooser implementation.index
- Ordinal component index.public static javax.swing.JTable findJTable(java.awt.Container cont, ComponentChooser chooser)
cont
- Container to search component in.chooser
- org.netbeans.jemmy.ComponentChooser implementation.public static javax.swing.JTable findJTable(java.awt.Container cont, java.lang.String text, boolean ce, boolean ccs, int row, int column, int index)
cont
- Container to search component in.text
- Item text. If null, contents is not checked.ce
- Compare text exactly.ccs
- Compare text case sensitively.row
- Index of row to compare text. If -1, selected row is checked.column
- Index of column to compare text. If -1, selected column is checked.index
- Ordinal component index.Operator.isCaptionEqual(String, String, boolean, boolean)
public static javax.swing.JTable findJTable(java.awt.Container cont, java.lang.String text, boolean ce, boolean ccs, int row, int column)
cont
- Container to search component in.text
- Item text. If null, contents is not checked.ce
- Compare text exactly.ccs
- Compare text case sensitively.row
- Index of row to compare text. If -1, selected row is checked.column
- Index of column to compare text. If -1, selected column is checked.Operator.isCaptionEqual(String, String, boolean, boolean)
public static javax.swing.JTable waitJTable(java.awt.Container cont, ComponentChooser chooser, int index)
cont
- Container to search component in.chooser
- org.netbeans.jemmy.ComponentChooser implementation.index
- Ordinal component index.TimeoutExpiredException
public static javax.swing.JTable waitJTable(java.awt.Container cont, ComponentChooser chooser)
cont
- Container to search component in.chooser
- org.netbeans.jemmy.ComponentChooser implementation.TimeoutExpiredException
public static javax.swing.JTable waitJTable(java.awt.Container cont, java.lang.String text, boolean ce, boolean ccs, int row, int column, int index)
cont
- Container to search component in.text
- Item text. If null, contents is not checked.ce
- Compare text exactly.ccs
- Compare text case sensitively.row
- Index of row to compare text. If -1, selected row is checked.column
- Index of column to compare text. If -1, selected column is checked.index
- Ordinal component index.TimeoutExpiredException
Operator.isCaptionEqual(String, String, boolean, boolean)
public static javax.swing.JTable waitJTable(java.awt.Container cont, java.lang.String text, boolean ce, boolean ccs, int row, int column)
cont
- Container to search component in.text
- Item text. If null, contents is not checked.ce
- Compare text exactly.ccs
- Compare text case sensitively.row
- Index of row to compare text. If -1, selected row is checked.column
- Index of column to compare text. If -1, selected column is checked.TimeoutExpiredException
Operator.isCaptionEqual(String, String, boolean, boolean)
public void setTimeouts(Timeouts times)
Timeoutable
setTimeouts
in interface Timeoutable
setTimeouts
in class JComponentOperator
times
- A collection of timeout assignments.Timeoutable.getTimeouts()
public Timeouts getTimeouts()
Timeoutable
getTimeouts
in interface Timeoutable
getTimeouts
in class JComponentOperator
Timeoutable.setTimeouts(org.netbeans.jemmy.Timeouts)
public void setOutput(TestOut out)
Outputable
setOutput
in interface Outputable
setOutput
in class JComponentOperator
out
- Identify the streams or writers used for print output.Outputable.getOutput()
public TestOut getOutput()
Outputable
getOutput
in interface Outputable
getOutput
in class JComponentOperator
Outputable.setOutput(org.netbeans.jemmy.TestOut)
public void copyEnvironment(Operator anotherOperator)
Operator
copyEnvironment
in class ComponentOperator
anotherOperator
- an operator to copy the environment to.public java.awt.Point findCell(java.lang.String text, Operator.StringComparator comparator, int index)
text
- a text patterncomparator
- a string comparision algorithmindex
- an ordinal cell indexpublic java.awt.Point findCell(java.lang.String text, Operator.StringComparator comparator, int[] rows, int[] columns, int index)
text
- a text patterncomparator
- a string comparision algorithmrows
- rows to search incolumns
- columns to search inindex
- an ordinal cell indexpublic int findCellRow(java.lang.String text, Operator.StringComparator comparator, int index)
text
- a text patterncomparator
- a string comparision algorithmindex
- an ordinal cell indexpublic int findCellRow(java.lang.String text, Operator.StringComparator comparator, int column, int index)
text
- a text patterncomparator
- a string comparision algorithmcolumn
- a column index to search inindex
- an ordinal cell indexpublic int findCellColumn(java.lang.String text, Operator.StringComparator comparator, int index)
text
- a text patterncomparator
- a string comparision algorithmindex
- an ordinal cell indexpublic int findCellColumn(java.lang.String text, Operator.StringComparator comparator, int row, int index)
text
- a text patterncomparator
- a string comparision algorithmrow
- a row index to search inindex
- an ordinal cell indexpublic int findCellRow(java.lang.String text, boolean ce, boolean ccs, int index)
text
- Text to search by.ce
- Compare exactly.ccs
- Compare case sensitively.index
- Ordinal index in suitable cells.findCellRow(String, int)
public int findCellColumn(java.lang.String text, boolean ce, boolean ccs, int index)
text
- Text to search by.ce
- Compare exactly.ccs
- Compare case sensitively.index
- Ordinal index in suitable cells.findCellColumn(String, int)
public int findCellRow(java.lang.String text, boolean ce, boolean ccs)
text
- Text to search by.ce
- Compare exactly.ccs
- Compare case sensitively.findCellRow(String)
public int findCellColumn(java.lang.String text, boolean ce, boolean ccs)
text
- Text to search by.ce
- Compare exactly.ccs
- Compare case sensitively.findCellColumn(String)
public int findCellRow(java.lang.String text, Operator.StringComparator comparator)
text
- a text patterncomparator
- a string comparision algorithmpublic int findCellColumn(java.lang.String text, Operator.StringComparator comparator)
text
- a text patterncomparator
- a string comparision algorithmpublic int findCellRow(java.lang.String text, int index)
text
- Text to search by.index
- Ordinal index in suitable cells.public int findCellRow(java.lang.String text, int column, int index)
text
- a text patterncolumn
- a column index to search inindex
- Ordinal index in suitable cells.public int findCellColumn(java.lang.String text, int index)
text
- Text to search by.index
- Ordinal index in suitable cells.public int findCellColumn(java.lang.String text, int row, int index)
text
- a text patternrow
- a row index to search inindex
- Ordinal index in suitable cells.public java.awt.Point findCell(java.lang.String text, int index)
text
- a text patternindex
- an ordinal cell indexpublic java.awt.Point findCell(java.lang.String text, int[] rows, int[] columns, int index)
text
- a text patternrows
- rows to search incolumns
- columns to search inindex
- an ordinal cell indexpublic int findCellRow(java.lang.String text)
text
- Text to search by.public int findCellColumn(java.lang.String text)
text
- Text to search by.public int findCellRow(ComponentChooser chooser, int index)
chooser
- Component verifying object.index
- Ordinal index in suitable cells.public int findCellRow(ComponentChooser chooser, int column, int index)
chooser
- Component verifying object.column
- a column index to search inindex
- Ordinal index in suitable cells.public int findCellColumn(ComponentChooser chooser, int index)
chooser
- Component verifying object.index
- Ordinal index in suitable cells.public int findCellColumn(ComponentChooser chooser, int row, int index)
chooser
- Component verifying object.row
- a row index to search inindex
- Ordinal index in suitable cells.public java.awt.Point findCell(ComponentChooser chooser, int index)
chooser
- Component verifying object.index
- an ordinal cell indexpublic java.awt.Point findCell(ComponentChooser chooser, int[] rows, int[] columns, int index)
chooser
- Component verifying object.rows
- rows to search incolumns
- columns to search inindex
- an ordinal cell indexpublic int findCellRow(ComponentChooser chooser)
chooser
- Component verifying object.public int findCellColumn(ComponentChooser chooser)
chooser
- Component verifying object.public java.awt.Point findCell(ComponentChooser chooser)
chooser
- Component verifying object.public int findCellRow(JTableOperator.TableCellChooser chooser, int index)
chooser
- Cell verifying object.index
- Ordinal index in suitable cells.public int findCellRow(JTableOperator.TableCellChooser chooser, int column, int index)
chooser
- Cell verifying object.column
- a column index to search inindex
- Ordinal index in suitable cells.public int findCellColumn(JTableOperator.TableCellChooser chooser, int index)
chooser
- ComponentCell verifying object.index
- Ordinal index in suitable cells.public int findCellColumn(JTableOperator.TableCellChooser chooser, int row, int index)
chooser
- Cell verifying object.row
- a row index to search inindex
- Ordinal index in suitable cells.public java.awt.Point findCell(JTableOperator.TableCellChooser chooser, int index)
chooser
- cell verifying object.index
- an ordinal cell indexpublic java.awt.Point findCell(JTableOperator.TableCellChooser chooser, int[] rows, int[] columns, int index)
chooser
- cell verifying object.rows
- rows to search incolumns
- columns to search inindex
- an ordinal cell indexpublic int findCellRow(JTableOperator.TableCellChooser chooser)
chooser
- Cell verifying object.public int findCellColumn(JTableOperator.TableCellChooser chooser)
chooser
- Cell verifying object.public java.awt.Point findCell(JTableOperator.TableCellChooser chooser)
chooser
- cell verifying object.public void clickOnCell(int row, int column, int clickCount, int button, int modifiers)
row
- a row indexcolumn
- a column indexclickCount
- a number of clicksbutton
- a mouse button (value of InputEvent.BUTTON*_MASK field)modifiers
- Modifiers (combination of InputEvent.*_MASK values)public void clickOnCell(int row, int column, int clickCount, int button)
row
- a row indexcolumn
- a column indexclickCount
- a number of clicksbutton
- a mouse button (value of InputEvent.BUTTON*_MASK field)public void clickOnCell(int row, int column, int clickCount)
row
- a row indexcolumn
- a column indexclickCount
- a number of clickspublic void clickOnCell(int row, int column)
row
- a row indexcolumn
- a column indexpublic void clickForEdit(int row, int column)
row
- a row indexcolumn
- a column indexTimeoutExpiredException
public void changeCellText(int row, int column, java.lang.String newText)
row
- a row indexcolumn
- a column indexnewText
- a text to enterTimeoutExpiredException
changeCellObject(int, int, Object)
public void changeCellObject(int row, int column, java.lang.Object newValue)
row
- a row indexcolumn
- a column indexnewValue
- an object to chenge cell value to.TimeoutExpiredException
public void scrollToCell(int row, int column)
row
- a row indexcolumn
- a column indexTimeoutExpiredException
public void selectCell(int row, int column)
row
- a row indexcolumn
- a column indexpublic int findColumn(java.lang.String name, Operator.StringComparator comparator)
name
- a text patterncomparator
- a string comparision algorithmpublic int findColumn(java.lang.String name)
name
- a text patternpublic javax.swing.JPopupMenu callPopupOnCell(int row, int column)
row
- a row indexcolumn
- a column indexpublic java.awt.Component getRenderedComponent(int row, int column, boolean isSelected, boolean cellHasFocus)
row
- cell row index.column
- cell column visible index.isSelected
- True if the specified cell was selected.cellHasFocus
- True if the specified cell has the focus.public java.awt.Component getRenderedComponent(int row, int column)
row
- cell row index.column
- cell column visible index.public java.awt.Point getPointToClick(int row, int column)
row
- a row indexcolumn
- a column indexpublic JTableHeaderOperator getHeaderOperator()
public java.awt.Component waitCellComponent(ComponentChooser chooser, int row, int column)
chooser
- a chhoser specifying criteria to distinguish cell editor.row
- a row indexcolumn
- a column indexchooser
public void waitCell(java.lang.String cellText, int row, int column)
cellText
- Text comparing to cell text by getComparator()
comparator.row
- cell row index. If -1, selected one is checked.column
- cell column visible index. If -1, selected one is checked.public java.util.Hashtable getDump()
getDump
in class JComponentOperator
public void addColumn(javax.swing.table.TableColumn tableColumn)
JTable.addColumn(TableColumn)
through queuepublic void addColumnSelectionInterval(int i, int i1)
JTable.addColumnSelectionInterval(int, int)
through queuepublic void addRowSelectionInterval(int i, int i1)
JTable.addRowSelectionInterval(int, int)
through queuepublic void clearSelection()
JTable.clearSelection()
through queuepublic void columnAdded(javax.swing.event.TableColumnModelEvent tableColumnModelEvent)
JTable.columnAdded(TableColumnModelEvent)
through queuepublic int columnAtPoint(java.awt.Point point)
JTable.columnAtPoint(Point)
through queuepublic void columnMarginChanged(javax.swing.event.ChangeEvent changeEvent)
JTable.columnMarginChanged(ChangeEvent)
through queuepublic void columnMoved(javax.swing.event.TableColumnModelEvent tableColumnModelEvent)
JTable.columnMoved(TableColumnModelEvent)
through queuepublic void columnRemoved(javax.swing.event.TableColumnModelEvent tableColumnModelEvent)
JTable.columnRemoved(TableColumnModelEvent)
through queuepublic void columnSelectionChanged(javax.swing.event.ListSelectionEvent listSelectionEvent)
JTable.columnSelectionChanged(ListSelectionEvent)
through queuepublic int convertColumnIndexToModel(int i)
JTable.convertColumnIndexToModel(int)
through queuepublic int convertColumnIndexToView(int i)
JTable.convertColumnIndexToView(int)
through queuepublic void createDefaultColumnsFromModel()
JTable.createDefaultColumnsFromModel()
through queuepublic boolean editCellAt(int i, int i1)
JTable.editCellAt(int, int)
through queuepublic boolean editCellAt(int i, int i1, java.util.EventObject eventObject)
JTable.editCellAt(int, int, EventObject)
through queuepublic void editingCanceled(javax.swing.event.ChangeEvent changeEvent)
JTable.editingCanceled(ChangeEvent)
through queuepublic void editingStopped(javax.swing.event.ChangeEvent changeEvent)
JTable.editingStopped(ChangeEvent)
through queuepublic boolean getAutoCreateColumnsFromModel()
JTable.getAutoCreateColumnsFromModel()
through queuepublic int getAutoResizeMode()
JTable.getAutoResizeMode()
through queuepublic javax.swing.table.TableCellEditor getCellEditor()
JTable.getCellEditor()
through queuepublic javax.swing.table.TableCellEditor getCellEditor(int i, int i1)
JTable.getCellEditor(int, int)
through queuepublic java.awt.Rectangle getCellRect(int i, int i1, boolean b)
JTable.getCellRect(int, int, boolean)
through queuepublic javax.swing.table.TableCellRenderer getCellRenderer(int i, int i1)
JTable.getCellRenderer(int, int)
through queuepublic boolean getCellSelectionEnabled()
JTable.getCellSelectionEnabled()
through queuepublic javax.swing.table.TableColumn getColumn(java.lang.Object object)
JTable.getColumn(Object)
through queuepublic java.lang.Class getColumnClass(int i)
JTable.getColumnClass(int)
through queuepublic int getColumnCount()
JTable.getColumnCount()
through queuepublic javax.swing.table.TableColumnModel getColumnModel()
JTable.getColumnModel()
through queuepublic java.lang.String getColumnName(int i)
JTable.getColumnName(int)
through queuepublic boolean getColumnSelectionAllowed()
JTable.getColumnSelectionAllowed()
through queuepublic javax.swing.table.TableCellEditor getDefaultEditor(java.lang.Class clss)
JTable.getDefaultEditor(Class)
through queuepublic javax.swing.table.TableCellRenderer getDefaultRenderer(java.lang.Class clss)
JTable.getDefaultRenderer(Class)
through queuepublic int getEditingColumn()
JTable.getEditingColumn()
through queuepublic int getEditingRow()
JTable.getEditingRow()
through queuepublic java.awt.Component getEditorComponent()
JTable.getEditorComponent()
through queuepublic java.awt.Color getGridColor()
JTable.getGridColor()
through queuepublic java.awt.Dimension getIntercellSpacing()
JTable.getIntercellSpacing()
through queuepublic javax.swing.table.TableModel getModel()
JTable.getModel()
through queuepublic java.awt.Dimension getPreferredScrollableViewportSize()
JTable.getPreferredScrollableViewportSize()
through queuepublic int getRowCount()
JTable.getRowCount()
through queuepublic int getRowHeight()
JTable.getRowHeight()
through queuepublic int getRowMargin()
JTable.getRowMargin()
through queuepublic boolean getRowSelectionAllowed()
JTable.getRowSelectionAllowed()
through queuepublic int getScrollableBlockIncrement(java.awt.Rectangle rectangle, int i, int i1)
JTable.getScrollableBlockIncrement(Rectangle, int, int)
through queuepublic boolean getScrollableTracksViewportHeight()
JTable.getScrollableTracksViewportHeight()
through queuepublic boolean getScrollableTracksViewportWidth()
JTable.getScrollableTracksViewportWidth()
through queuepublic int getScrollableUnitIncrement(java.awt.Rectangle rectangle, int i, int i1)
JTable.getScrollableUnitIncrement(Rectangle, int, int)
through queuepublic int getSelectedColumn()
JTable.getSelectedColumn()
through queuepublic int getSelectedColumnCount()
JTable.getSelectedColumnCount()
through queuepublic int[] getSelectedColumns()
JTable.getSelectedColumns()
through queuepublic int getSelectedRow()
JTable.getSelectedRow()
through queuepublic int getSelectedRowCount()
JTable.getSelectedRowCount()
through queuepublic int[] getSelectedRows()
JTable.getSelectedRows()
through queuepublic java.awt.Color getSelectionBackground()
JTable.getSelectionBackground()
through queuepublic java.awt.Color getSelectionForeground()
JTable.getSelectionForeground()
through queuepublic javax.swing.ListSelectionModel getSelectionModel()
JTable.getSelectionModel()
through queuepublic boolean getShowHorizontalLines()
JTable.getShowHorizontalLines()
through queuepublic boolean getShowVerticalLines()
JTable.getShowVerticalLines()
through queuepublic javax.swing.table.JTableHeader getTableHeader()
JTable.getTableHeader()
through queuepublic javax.swing.plaf.TableUI getUI()
JTable.getUI()
through queuepublic java.lang.Object getValueAt(int i, int i1)
JTable.getValueAt(int, int)
through queuepublic boolean isCellEditable(int i, int i1)
JTable.isCellEditable(int, int)
through queuepublic boolean isCellSelected(int i, int i1)
JTable.isCellSelected(int, int)
through queuepublic boolean isColumnSelected(int i)
JTable.isColumnSelected(int)
through queuepublic boolean isEditing()
JTable.isEditing()
through queuepublic boolean isRowSelected(int i)
JTable.isRowSelected(int)
through queuepublic void moveColumn(int i, int i1)
JTable.moveColumn(int, int)
through queuepublic java.awt.Component prepareEditor(javax.swing.table.TableCellEditor tableCellEditor, int i, int i1)
JTable.prepareEditor(TableCellEditor, int, int)
through queuepublic java.awt.Component prepareRenderer(javax.swing.table.TableCellRenderer tableCellRenderer, int i, int i1)
JTable.prepareRenderer(TableCellRenderer, int, int)
through queuepublic void removeColumn(javax.swing.table.TableColumn tableColumn)
JTable.removeColumn(TableColumn)
through queuepublic void removeColumnSelectionInterval(int i, int i1)
JTable.removeColumnSelectionInterval(int, int)
through queuepublic void removeEditor()
JTable.removeEditor()
through queuepublic void removeRowSelectionInterval(int i, int i1)
JTable.removeRowSelectionInterval(int, int)
through queuepublic int rowAtPoint(java.awt.Point point)
JTable.rowAtPoint(Point)
through queuepublic void selectAll()
JTable.selectAll()
through queuepublic void setAutoCreateColumnsFromModel(boolean b)
JTable.setAutoCreateColumnsFromModel(boolean)
through queuepublic void setAutoResizeMode(int i)
JTable.setAutoResizeMode(int)
through queuepublic void setCellEditor(javax.swing.table.TableCellEditor tableCellEditor)
JTable.setCellEditor(TableCellEditor)
through queuepublic void setCellSelectionEnabled(boolean b)
JTable.setCellSelectionEnabled(boolean)
through queuepublic void setColumnModel(javax.swing.table.TableColumnModel tableColumnModel)
JTable.setColumnModel(TableColumnModel)
through queuepublic void setColumnSelectionAllowed(boolean b)
JTable.setColumnSelectionAllowed(boolean)
through queuepublic void setColumnSelectionInterval(int i, int i1)
JTable.setColumnSelectionInterval(int, int)
through queuepublic void setDefaultEditor(java.lang.Class clss, javax.swing.table.TableCellEditor tableCellEditor)
JTable.setDefaultEditor(Class, TableCellEditor)
through queuepublic void setDefaultRenderer(java.lang.Class clss, javax.swing.table.TableCellRenderer tableCellRenderer)
JTable.setDefaultRenderer(Class, TableCellRenderer)
through queuepublic void setEditingColumn(int i)
JTable.setEditingColumn(int)
through queuepublic void setEditingRow(int i)
JTable.setEditingRow(int)
through queuepublic void setGridColor(java.awt.Color color)
JTable.setGridColor(Color)
through queuepublic void setIntercellSpacing(java.awt.Dimension dimension)
JTable.setIntercellSpacing(Dimension)
through queuepublic void setModel(javax.swing.table.TableModel tableModel)
JTable.setModel(TableModel)
through queuepublic void setPreferredScrollableViewportSize(java.awt.Dimension dimension)
JTable.setPreferredScrollableViewportSize(Dimension)
through queuepublic void setRowHeight(int i)
JTable.setRowHeight(int)
through queuepublic void setRowMargin(int i)
JTable.setRowMargin(int)
through queuepublic void setRowSelectionAllowed(boolean b)
JTable.setRowSelectionAllowed(boolean)
through queuepublic void setRowSelectionInterval(int i, int i1)
JTable.setRowSelectionInterval(int, int)
through queuepublic void setSelectionBackground(java.awt.Color color)
JTable.setSelectionBackground(Color)
through queuepublic void setSelectionForeground(java.awt.Color color)
JTable.setSelectionForeground(Color)
through queuepublic void setSelectionMode(int i)
JTable.setSelectionMode(int)
through queuepublic void setSelectionModel(javax.swing.ListSelectionModel listSelectionModel)
JTable.setSelectionModel(ListSelectionModel)
through queuepublic void setShowGrid(boolean b)
JTable.setShowGrid(boolean)
through queuepublic void setShowHorizontalLines(boolean b)
JTable.setShowHorizontalLines(boolean)
through queuepublic void setShowVerticalLines(boolean b)
JTable.setShowVerticalLines(boolean)
through queuepublic void setTableHeader(javax.swing.table.JTableHeader jTableHeader)
JTable.setTableHeader(JTableHeader)
through queuepublic void setUI(javax.swing.plaf.TableUI tableUI)
JTable.setUI(TableUI)
through queuepublic void setValueAt(java.lang.Object object, int i, int i1)
JTable.setValueAt(Object, int, int)
through queuepublic void tableChanged(javax.swing.event.TableModelEvent tableModelEvent)
JTable.tableChanged(TableModelEvent)
through queuepublic void valueChanged(javax.swing.event.ListSelectionEvent listSelectionEvent)
JTable.valueChanged(ListSelectionEvent)
through queue