Class AbstractMouseEvent
- java.lang.Object
-
- org.dreambot.api.input.event.AbstractEvent
-
- org.dreambot.api.input.event.impl.mouse.AbstractMouseEvent
-
- All Implemented Interfaces:
java.lang.Runnable
- Direct Known Subclasses:
ClickEvent
,MoveEvent
,WheelEvent
@Deprecated public abstract class AbstractMouseEvent extends AbstractEvent
Deprecated.
-
-
Constructor Summary
Constructors Constructor Description AbstractMouseEvent(AbstractMouseDestination destination)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Condition
completed()
Deprecated.AbstractCondition
used to determine if current event is complete.Condition
failed()
Deprecated.AbstractCondition
used to determine if current event has failed.AbstractMouseDestination
getDestination()
Deprecated.Gets current destination used by this event.void
setDestination(AbstractMouseDestination destination)
Deprecated.Sets current destination used by this event.
-
-
-
Constructor Detail
-
AbstractMouseEvent
public AbstractMouseEvent(AbstractMouseDestination destination)
Deprecated.
-
-
Method Detail
-
getDestination
public AbstractMouseDestination getDestination()
Deprecated.Gets current destination used by this event.- Returns:
- the
AbstractMouseDestination
.
-
setDestination
public void setDestination(AbstractMouseDestination destination)
Deprecated.Sets current destination used by this event.- Parameters:
destination
- the destination you wish to set.
-
completed
public Condition completed()
Deprecated.AbstractCondition
used to determine if current event is complete.- Specified by:
completed
in classAbstractEvent
- Returns:
Condition
used to determine if current event has completed successfully.
-
failed
public Condition failed()
Deprecated.AbstractCondition
used to determine if current event has failed.- Specified by:
failed
in classAbstractEvent
- Returns:
Condition
used to determine if current event has failed.
-
-