01: package com.xoetrope.swing.util;
02:
03: import java.awt.Shape;
04:
05: /**
06: * Draws a simple shape
07: *
08: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
09: * the GNU Public License (GPL), please see license.txt for more details. If
10: * you make commercial use of this software you must purchase a commercial
11: * license from Xoetrope.</p>
12: * <p> $Revision: 1.2 $</p>
13: */
14: public interface XShapeGenerator {
15: /**
16: * Get a shape
17: * @return the generated shape
18: */
19: public Shape getShape();
20: }
|