-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUIDefaultsClassLazyValue.java
54 lines (42 loc) · 1.49 KB
/
UIDefaultsClassLazyValue.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import javax.swing.UIDefaults;
public class UIDefaultsClassLazyValue {
public static void main(String[] args) {
// UIDefaults.LazyValue
UIDefaults.LazyValue lazyValue = new UIDefaults.LazyValue() {
@Override
public Object createValue(UIDefaults table) {
System.out.println(table);
return table;
}
};
UIDefaults.LazyValue lazyValue1 = new UIDefaults.LazyValue() {
@Override
public Object createValue(UIDefaults table) {
System.out.println(table);
return table;
}
};
UIDefaults defaultValue = new UIDefaults();
UIDefaults defaultValue1 = new UIDefaults();
defaultValue.put("A", 1);
defaultValue.put("B", 2);
defaultValue.put("C", 3);
lazyValue.createValue(defaultValue);
defaultValue1.putAll(defaultValue);
lazyValue1.createValue(defaultValue1);
defaultValue1.putAll(defaultValue);
Boolean k = lazyValue.equals(lazyValue1);
System.out.println(k);
Boolean k1 = lazyValue.equals(lazyValue);
System.out.println(k1);
example1 ex = new example1();
ex.createValue(defaultValue);
}
}
class example1 implements UIDefaults.LazyValue {
@Override
public Object createValue(UIDefaults table) {
System.out.println(table);
return table;
}
}