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 | 0 | public abstract class DataDictionaryMapBase implements Map { |
23 | |
|
24 | |
public int size() { |
25 | 0 | throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() ); |
26 | |
} |
27 | |
|
28 | |
public boolean isEmpty() { |
29 | 0 | return false; |
30 | |
} |
31 | |
|
32 | |
public boolean containsKey(Object key) { |
33 | 0 | return get( key ) != null; |
34 | |
} |
35 | |
|
36 | |
public boolean containsValue(Object value) { |
37 | 0 | throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() ); |
38 | |
} |
39 | |
|
40 | |
public Object put(Object key, Object value) { |
41 | 0 | throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() ); |
42 | |
} |
43 | |
|
44 | |
public Object remove(Object key) { |
45 | 0 | throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() ); |
46 | |
} |
47 | |
|
48 | |
public void putAll(Map map) { |
49 | 0 | throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() ); |
50 | |
} |
51 | |
|
52 | |
public void clear() { |
53 | 0 | throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() ); |
54 | |
} |
55 | |
|
56 | |
public Set keySet() { |
57 | 0 | throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() ); |
58 | |
} |
59 | |
|
60 | |
public Collection values() { |
61 | 0 | throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() ); |
62 | |
} |
63 | |
|
64 | |
public Set entrySet() { |
65 | 0 | throw new UnsupportedOperationException( "This operation not supported on a " + this.getClass().getName() ); |
66 | |
} |
67 | |
|
68 | |
} |