1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.rice.core.util;
18
19 import java.lang.reflect.Field;
20 import java.lang.reflect.Modifier;
21 import java.util.HashMap;
22 import java.util.Map;
23
24
25
26
27
28
29 public class JSTLConstants extends HashMap {
30
31 private static final long serialVersionUID = 6701136401021219281L;
32 private boolean initialised = false;
33
34 public JSTLConstants() {
35 publishFields(this, this.getClass());
36 initialised = true;
37 }
38
39 public JSTLConstants(Class constantsClass) {
40 publishFields(this, constantsClass);
41 initialised = true;
42 }
43
44
45
46
47
48
49
50 protected void publishFields(Map constantMap, Class c) {
51 Field[] fields = c.getDeclaredFields();
52 for (Field field : fields) {
53 int modifier = field.getModifiers();
54
55
56 if (Modifier.isStatic(modifier) && Modifier.isFinal(modifier) && !Modifier.isPrivate(modifier)) {
57 try {
58 String fieldName = field.getName();
59
60 constantMap.put(fieldName, field.get(null));
61 } catch (IllegalAccessException e) {}
62 }
63 }
64
65
66 publishMemberClassFields(constantMap, c);
67 }
68
69
70
71
72
73
74
75
76 protected void publishMemberClassFields(Map constantMap, Class c) {
77 Class[] memberClasses = c.getClasses();
78
79 for (Class memberClass : memberClasses) {
80 if (!memberClass.isAnonymousClass()) {
81 String memberPrefix = memberClass.getSimpleName();
82
83 Map subclassMap = new HashMap();
84 publishFields(subclassMap, memberClass);
85 constantMap.put(memberClass.getSimpleName(), subclassMap);
86 }
87 }
88 }
89
90 public void clear() {
91 if (!initialised)
92 super.clear();
93 else
94 throw new UnsupportedOperationException("Cannot modify this map");
95 }
96
97 public Object put(Object key, Object value) {
98 if (!initialised)
99 return super.put(key, value);
100 else
101 throw new UnsupportedOperationException("Cannot modify this map");
102 }
103
104 public void putAll(Map m) {
105 if (!initialised)
106 super.putAll(m);
107 else
108 throw new UnsupportedOperationException("Cannot modify this map");
109 }
110
111 public Object remove(Object key) {
112 if (!initialised)
113 return super.remove(key);
114 else
115 throw new UnsupportedOperationException("Cannot modify this map");
116 }
117 }