01: package com.bostechcorp.cbesb.ui.util.tree;
02:
03: public class TreeConstants {
04:
05: public static Integer ItemType_Attribute = new Integer(0);
06: public static Integer ItemType_Folder = new Integer(1);
07: public static Integer ItemType_Folder_A = new Integer(2);
08: public static Integer ItemType_Folder_G = new Integer(3);
09: public static Integer ItemType_Folder_C = new Integer(4);
10:
11: public static Integer ItemType_RepeatFolder = new Integer(5);
12: public static Integer ItemType_RepeatFolder_A = new Integer(6);
13: public static Integer ItemType_RepeatFolder_G = new Integer(7);
14: public static Integer ItemType_RepeatFolder_C = new Integer(8);
15:
16: public static Integer ItemType_LeafNode = new Integer(9);
17:
18: public static Integer TreeItem_USED = new Integer(1);
19:
20: public static Integer TreeItem_UnUSED = new Integer(2);
21:
22: public static Integer TreeItem_PartlyUSED = new Integer(3);
23:
24: public static Integer UsedType_USED = new Integer(4); //"used";
25:
26: public static Integer UsedType_USED_INHERIT = new Integer(5);// "inheritUsed";
27:
28: public static Integer UsedType_UnUSED = new Integer(6); //"unUsed";
29:
30: public static Integer UsedType_UnUSED_INHERIT = new Integer(7); //"inheritUnUsed";
31:
32: public static Integer UsedType_PartlyUSED = new Integer(8); //"partlyUsed";
33:
34: public static Integer UsedType_PartlyUSED_INHERIT = new Integer(9); //"inheritPartlyUsed";
35:
36: public static Integer UsedType_INHERIT = new Integer(10); //"inherit";
37:
38: }
|