net.nexttext.behaviour.control
Class OnMousePressedOver

java.lang.Object
  extended by net.nexttext.behaviour.AbstractAction
      extended by net.nexttext.behaviour.control.Condition
          extended by net.nexttext.behaviour.control.OnMouseDepressed
              extended by net.nexttext.behaviour.control.OnMousePressed
                  extended by net.nexttext.behaviour.control.OnMousePressedOver
All Implemented Interfaces:
Action

public class OnMousePressedOver
extends OnMousePressed

A Condition which is true when a mouse button is pressed over a TextObject i.e. a single true result is returned if the button was up and got pressed down on top of the given TextObject.


Nested Class Summary
 
Nested classes/interfaces inherited from interface net.nexttext.behaviour.Action
Action.ActionResult
 
Constructor Summary
OnMousePressedOver(Action trueAction)
          Creates an OnMousePressedOver which performs the given Action when the mouse button 1 is pressed.
OnMousePressedOver(int buttonToCheck, Action trueAction)
          Creates an OnMousePressedOver which performs the given Action when the selected mouse button is pressed.
 
Method Summary
 boolean condition(TextObject to)
          Checks whether or not the selected mouse button is pressed over the TextObject.
 
Methods inherited from class net.nexttext.behaviour.control.Condition
behave, complete, getRequiredProperties
 
Methods inherited from class net.nexttext.behaviour.AbstractAction
behave, behave, getDisplayName, makeBehaviour, properties, setDisplayName
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OnMousePressedOver

public OnMousePressedOver(Action trueAction)
Creates an OnMousePressedOver which performs the given Action when the mouse button 1 is pressed.

Parameters:
trueAction - the Action to perform when the mouse button 1 is pressed

OnMousePressedOver

public OnMousePressedOver(int buttonToCheck,
                          Action trueAction)
Creates an OnMousePressedOver which performs the given Action when the selected mouse button is pressed.

Parameters:
buttonToCheck - the mouse button to consider
trueAction - the Action to perform when the selected mouse button is pressed
Method Detail

condition

public boolean condition(TextObject to)
Checks whether or not the selected mouse button is pressed over the TextObject.

Overrides:
condition in class OnMousePressed
Parameters:
to - the TextObject to consider
Returns:
the outcome of the condition