1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kns.datadictionary.exporter;
17
18 import java.util.Collection;
19 import java.util.Map;
20 import java.util.Set;
21
22
23
24
25 @Deprecated
26 public abstract class DataDictionaryMapBase implements Map {
27
28 public int size() {
29 throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() );
30 }
31
32 public boolean isEmpty() {
33 return false;
34 }
35
36 public boolean containsKey(Object key) {
37 return get( key ) != null;
38 }
39
40 public boolean containsValue(Object value) {
41 throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() );
42 }
43
44 public Object put(Object key, Object value) {
45 throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() );
46 }
47
48 public Object remove(Object key) {
49 throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() );
50 }
51
52 public void putAll(Map map) {
53 throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() );
54 }
55
56 public void clear() {
57 throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() );
58 }
59
60 public Set keySet() {
61 throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() );
62 }
63
64 public Collection values() {
65 throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() );
66 }
67
68 public Set entrySet() {
69 throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() );
70 }
71
72 }