App
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
appcore
src
mhr
appcore
tools
actiondata
BrushLikeToolActionData.java
Go to the documentation of this file.
1
package
mhr.appcore.tools.actiondata;
2
6
public
class
BrushLikeToolActionData
implements
ToolActionData
{
7
11
public
static
enum
Action
{
12
DRAW_BEGIN,
DRAW_TO
, DRAW_END;
13
}
14
15
public
Action
action
;
16
public
int
eventAtX
;
17
public
int
eventAtY
;
18
25
public
BrushLikeToolActionData
(
Action
action
,
int
eventAtX
,
int
eventAtY
) {
26
this.action =
action
;
27
this.eventAtX =
eventAtX
;
28
this.eventAtY =
eventAtY
;
29
}
30
31
}
Generated on Thu May 23 2013 22:10:56 for App by
1.8.3