Uses of Class
org.fest.swing.core.MouseButton

Packages that use MouseButton
org.fest.swing.core Building blocks for all FEST-Swing fixtures. 
org.fest.swing.driver Drivers that simulate user input on GUI Components. 
org.fest.swing.fixture The power and flexibility of FEST-Swing come from the fixtures in this package. 
 

Uses of MouseButton in org.fest.swing.core
 

Methods in org.fest.swing.core that return MouseButton
 MouseButton MouseClickInfo.button()
          Returns the button to click.
static MouseButton MouseButton.lookup(int mask)
          Returns the mouse button whose mask matches the given mask.
static MouseButton MouseButton.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MouseButton[] MouseButton.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.fest.swing.core with parameters of type MouseButton
static MouseClickInfo MouseClickInfo.button(MouseButton button)
          Specifies that the given button should be clicked once.
 void Robot.click(Component c, MouseButton button)
          Simulates a user clicking once the given Component using the given mouse button.
 void BasicRobot.click(Component c, MouseButton button)
          Simulates a user clicking once the given Component using the given mouse button.
 void Robot.click(Component c, MouseButton button, int times)
          Simulates a user clicking the given mouse button, the given times on the given Component.
 void BasicRobot.click(Component c, MouseButton button, int times)
          Simulates a user clicking the given mouse button, the given times on the given Component.
 void Robot.click(Component c, Point where, MouseButton button, int times)
          Simulates a user clicking the given mouse button, the given times at the given position on the given Component.
 void BasicRobot.click(Component c, Point where, MouseButton button, int times)
          Simulates a user clicking the given mouse button, the given times at the given position on the given Component.
 void Robot.click(Point where, MouseButton button, int times)
          Simulates a user clicking the given mouse button, the given times at the given absolute coordinates.
 void BasicRobot.click(Point where, MouseButton button, int times)
          Simulates a user clicking the given mouse button, the given times at the given absolute coordinates.
 void Robot.pressMouse(Component c, Point where, MouseButton button)
          Simulates a user pressing the given mouse button on the given Component.
 void BasicRobot.pressMouse(Component c, Point where, MouseButton button)
          Simulates a user pressing the given mouse button on the given Component.
 void Robot.pressMouse(MouseButton button)
          Simulates a user pressing a mouse button.
 void BasicRobot.pressMouse(MouseButton button)
          Simulates a user pressing a mouse button.
 void Robot.pressMouse(Point where, MouseButton button)
          Simulates a user pressing the given mouse button on the given coordinates.
 void BasicRobot.pressMouse(Point where, MouseButton button)
          Simulates a user pressing the given mouse button on the given coordinates.
 void Robot.releaseMouse(MouseButton button)
          Releases the given mouse button.
 void BasicRobot.releaseMouse(MouseButton button)
          Releases the given mouse button.
 

Uses of MouseButton in org.fest.swing.driver
 

Methods in org.fest.swing.driver with parameters of type MouseButton
 void ComponentDriver.click(Component c, MouseButton button)
          Simulates a user clicking once the given Component using the given mouse button.
 void ComponentDriver.click(Component c, MouseButton button, int times)
          Simulates a user clicking the given mouse button, the given times on the given Component.
 void JTableDriver.click(JTable table, TableCell cell, MouseButton mouseButton, int times)
          Clicks the given cell, using the specified mouse button, the given number of times.
 void JTableHeaderDriver.clickColumn(JTableHeader tableHeader, int columnIndex, MouseButton button, int times)
          Clicks the column under the given index using the given mouse button the given number of times.
 void JTableHeaderDriver.clickColumn(JTableHeader tableHeader, Pattern columnNamePattern, MouseButton button, int times)
          Clicks the column which name matches the given regular expression pattern using the given mouse button the given number of times.
 void JTableHeaderDriver.clickColumn(JTableHeader tableHeader, String columnName, MouseButton button, int times)
          Clicks the column which name matches the given one using the given mouse button the given number of times.
 void JListDriver.clickItem(JList list, int index, MouseButton button, int times)
          Clicks the item under the given index, using the specified mouse button, the given number times.
 void JListDriver.clickItem(JList list, Pattern pattern, MouseButton button, int times)
          Clicks the first item matching the given regular expression pattern, using the specified mouse button, the given number times.
 void JListDriver.clickItem(JList list, String value, MouseButton button, int times)
          Clicks the first item matching the given value, using the specified mouse button, the given number times.
 void JTreeDriver.clickPath(JTree tree, String path, MouseButton button)
          Clicks the given path, expanding parent nodes if necessary.
 void JTreeDriver.clickRow(JTree tree, int row, MouseButton button)
          Clicks the given row.
 

Uses of MouseButton in org.fest.swing.fixture
 

Methods in org.fest.swing.fixture with parameters of type MouseButton
 MouseInputSimulationFixture MouseInputSimulationFixture.click(MouseButton button)
          Simulates a user clicking this fixture's GUI component.
 JPopupMenuFixture JPopupMenuFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JPopupMenu.
 JButtonFixture JButtonFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JButton.
 JCheckBoxFixture JCheckBoxFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JCheckBox.
 JComboBoxFixture JComboBoxFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JComboBox.
 JFileChooserFixture JFileChooserFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JFileChooser.
 JLabelFixture JLabelFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JLabel.
 JListFixture JListFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JList.
 JOptionPaneFixture JOptionPaneFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JOptionPane.
 JRadioButtonFixture JRadioButtonFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JRadioButton.
 JScrollBarFixture JScrollBarFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JScrollBar.
 JScrollPaneFixture JScrollPaneFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JScrollPane.
 JSpinnerFixture JSpinnerFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JSpinner.
 JSplitPaneFixture JSplitPaneFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JSplitPane.
 JTabbedPaneFixture JTabbedPaneFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JTabbedPane.
 JTableFixture JTableFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JTable.
 JTextComponentFixture JTextComponentFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JTextComponent.
 JToggleButtonFixture JToggleButtonFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JToggleButton.
 JToolBarFixture JToolBarFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JToolBar.
 JTreeFixture JTreeFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JTree.
 JListItemFixture JListItemFixture.click(MouseButton button)
          Simulates a user clicking this fixture's list item.
 JTableCellFixture JTableCellFixture.click(MouseButton button)
          Simulates a user clicking a cell in this fixture's table cell once, using the specified mouse button.
 FrameFixture FrameFixture.click(MouseButton button)
          Simulates a user clicking this fixture's Frame.
 JTreePathFixture JTreePathFixture.click(MouseButton button)
          Simulates a user clicking this fixture's tree node.
 JInternalFrameFixture JInternalFrameFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JInternalFrame.
 JTreeRowFixture JTreeRowFixture.click(MouseButton button)
          Simulates a user clicking this fixture's tree node.
 GenericComponentFixture<T> GenericComponentFixture.click(MouseButton button)
          Simulates a user clicking this fixture's GUI component.
 JSliderFixture JSliderFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JSlider.
 JPanelFixture JPanelFixture.click(MouseButton button)
          Simulates a user clicking this fixture's JPanel.
 DialogFixture DialogFixture.click(MouseButton button)
          Simulates a user clicking this fixture's Dialog.
 JTableFixture JTableFixture.click(TableCell cell, MouseButton button)
          Simulates a user clicking a cell in this fixture's JTable once, using the specified mouse button.
 JTreeFixture JTreeFixture.clickPath(String path, MouseButton button)
          Clicks the given path, expanding parent nodes if necessary.
 JTreeFixture JTreeFixture.clickRow(int row, MouseButton button)
          Clicks the given row.
 



Copyright © 2007-2011 FEST (Fixtures for Easy Software Testing). All Rights Reserved.