01: package com.xoetrope.carousel.testpilot;
02:
03: import java.awt.Robot;
04:
05: /**
06: * A structure to hold some extra information about a Robot
07: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
08: * the GNU Public License (GPL), please see license.txt for more details. If
09: * you make commercial use of this software you must purchase a commercial
10: * license from Xoetrope.</p>
11: * <p> $Revision: 1.2 $</p>
12: */
13: public class RobotWrapper {
14: public Robot robot;
15: public int offset;
16:
17: public RobotWrapper(Robot r, int o) {
18: robot = r;
19: offset = o;
20: }
21: }
|