KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > editor2d > EllipseDrawComponent


1 /**
2  * <copyright>
3  * </copyright>
4  *
5  * $Id: EllipseDrawComponent.java 1607 2005-08-23 16:04:49Z nozkiller $
6  */

7 package com.nightlabs.editor2d;
8
9 public interface EllipseDrawComponent
10 extends ShapeDrawComponent, IConnectable
11 {
12     public static final String JavaDoc PROP_START_ANGLE = "startAngle";
13     public static final String JavaDoc PROP_END_ANGLE = "endAngle";
14     
15   int getStartAngle();
16   void setStartAngle(int value);
17
18   int getEndAngle();
19   void setEndAngle(int value);
20 } // EllipseDrawComponent
21
Popular Tags