01: package com.xoetrope.carousel.survey;
02:
03: import java.awt.Point;
04:
05: /**
06: * interface used by XLine class, XLine connects object that implements it
07: * with question group view.
08: *
09: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
10: * the GNU Public License (GPL), please see license.txt for more details. If
11: * you make commercial use of this software you must purchase a commercial
12: * license from Xoetrope.</p>
13: * <p> $Revision: 1.5 $</p>
14: */
15: public interface XSource {
16: public void targetChanged(XGroupView newTarget);
17:
18: public Point getCenterPoint();
19:
20: public void moveToFront();
21: }
|