View Javadoc

1   // Copyright 2001, FreeHEP.
2   package org.freehep.graphicsio.swf;
3   
4   
5   /**
6    * SWF Constants.
7    * 
8    * @author Mark Donszelmann
9    * @author Charles Loomis
10   * @version $Id: SWFConstants.java 9979 2006-11-27 22:51:07Z duns $
11   */
12  public interface SWFConstants {
13  
14      /**
15       * This defines the control tag type.
16       */
17      public static final int CONTROL = 1;
18  
19      /**
20       * This defines the definition tag type.
21       */
22      public static final int DEFINITION = 2;
23  
24      public static final int DEFAULT_VERSION = 8;
25  
26      public static final int TWIPS = 20;
27  
28      public static final int LANGUAGE_LATIN = 1;
29  
30      public static final int LANGUAGE_JAPANESE = 2;
31  
32      public static final int LANGUAGE_KOREAN = 3;
33  
34      public static final int LANGUAGE_SIMPLIFIED_CHINESE = 4;
35  
36      public static final int LANGUAGE_TRADITIONAL_CHINESE = 5;
37  
38  }