App
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
appcore
src
mhr
appcore
commands
core
CropImageCommand.java
Go to the documentation of this file.
1
package
mhr.appcore.commands.core;
2
3
import
mhr.appcore.AppCore;
4
import
mhr.appcore.commands.AppCommand;
5
import
mhr.appcore.utils.Rect;
6
10
public
class
CropImageCommand
extends
AppCommand
{
11
12
protected
Rect
r
;
13
18
public
CropImageCommand
(
Rect
r
) {
19
this.r =
r
;
20
}
21
22
@Override
23
protected
void
action
(
AppCore
target) {
24
target.
cropImage
(
r
);
25
}
26
27
}
Generated on Thu May 23 2013 22:10:55 for App by
1.8.3