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

Packages that use MouseClickInfo
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 MouseClickInfo in org.fest.swing.core
 

Methods in org.fest.swing.core that return MouseClickInfo
static MouseClickInfo MouseClickInfo.button(MouseButton button)
          Specifies that the given button should be clicked once.
static MouseClickInfo MouseClickInfo.leftButton()
          Specifies that the left button should be clicked once.
static MouseClickInfo MouseClickInfo.middleButton()
          Specifies that the middle button should be clicked once.
static MouseClickInfo MouseClickInfo.rightButton()
          Specifies that the right button should be clicked once.
 MouseClickInfo MouseClickInfo.times(int newTimes)
          Specifies how many times the mouse button should be clicked.
 

Uses of MouseClickInfo in org.fest.swing.driver
 

Methods in org.fest.swing.driver with parameters of type MouseClickInfo
 void ComponentDriver.click(Component c, MouseClickInfo mouseClickInfo)
          Simulates a user clicking the given mouse button, the given times on the given Component.
 void JTreeDriver.clickPath(JTree tree, String path, MouseClickInfo mouseClickInfo)
          Clicks the given path, expanding parent nodes if necessary.
 void JTreeDriver.clickRow(JTree tree, int row, MouseClickInfo mouseClickInfo)
          Clicks the given row.
 

Uses of MouseClickInfo in org.fest.swing.fixture
 

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



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