01: package com.bostechcorp.cbesb.common.util.xfm;
02:
03: public class AnonymousConstants {
04:
05: public static String SEQUENCE = "sequence";
06: public static String ALL = "all";
07: public static String CHOICE = "choice";
08: public static String GROUP = "group";
09: public static String SUBTITUTION = "subtitution";
10:
11: public static int TYPE_SEQUENCE = 0;
12: public static int TYPE_CHOICE = 1;
13: public static int TYPE_ALL = 2;
14: public static int TYPE_GROUP = 3;
15: public static int TYPE_SUBTITUTION = 4;
16:
17: }
|