01 /**
02 *
03 * All content copyright (c) 2003-2008 Terracotta, Inc.,
04 * except as may otherwise be noted in a separate copyright notice.
05 * All rights reserved.
06 *
07 */
08 package demo.sharededitor.ui;
09
10 /**
11 * Description of the Interface
12 *
13 *@author Terracotta, Inc.
14 */
15 public interface FillStyleConsts {
16 /**
17 * Description of the Field
18 */
19 public static int FILLSTYLE_TRANSPARENT = 0;
20 /**
21 * Description of the Field
22 */
23 public static int FILLSTYLE_SOLID = 1;
24 /**
25 * Description of the Field
26 */
27 public static int FILLSTYLE_TEXTURED = 2;
28 }
|