Interface ActionButtonModel
-
- All Superinterfaces:
javax.swing.ButtonModel,java.awt.ItemSelectable
- All Known Implementing Classes:
ActionRepeatableButtonModel
public interface ActionButtonModel extends javax.swing.ButtonModelModel for the action area ofJCommandButtoncomponent.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisFireActionOnPress()Returns indication whether the associated actions should be fired on mouse press instead of mouse release.voidsetFireActionOnPress(boolean toFireActionOnPress)Sets indication whether the associated actions should be fired on mouse press instead of mouse release.-
Methods inherited from interface javax.swing.ButtonModel
addActionListener, addChangeListener, addItemListener, getActionCommand, getMnemonic, isArmed, isEnabled, isPressed, isRollover, isSelected, removeActionListener, removeChangeListener, removeItemListener, setActionCommand, setArmed, setEnabled, setGroup, setMnemonic, setPressed, setRollover, setSelected
-
-
-
-
Method Detail
-
setFireActionOnPress
void setFireActionOnPress(boolean toFireActionOnPress)
Sets indication whether the associated actions should be fired on mouse press instead of mouse release.- Parameters:
toFireActionOnPress- iftrue, the associated actions will be fired on mouse press, otherwise the associated actions will be fired on mouse release.
-
isFireActionOnPress
boolean isFireActionOnPress()
Returns indication whether the associated actions should be fired on mouse press instead of mouse release.- Returns:
trueif the associated actions are fired on mouse press,falseif the associated actions are fired on mouse release.
-
-