01: /*
02: * Copyright 2005-2006 the original author or authors.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
05: * in compliance with the License. You may obtain a copy of the License at
06: *
07: * http://www.apache.org/licenses/LICENSE-2.0
08: *
09: * Unless required by applicable law or agreed to in writing, software distributed under the License
10: * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11: * or implied. See the License for the specific language governing permissions and limitations under
12: * the License.
13: */
14:
15: package org.strecks.util.impl;
16:
17: import java.util.Collection;
18: import java.util.List;
19: import java.util.Map;
20: import java.util.Set;
21:
22: /**
23: * @author Phil Zoio
24: */
25: public class MapContainingList implements Map<String, List<String>> {
26:
27: private static final long serialVersionUID = -5585970530224458329L;
28:
29: public int size() {
30:
31: return 0;
32: }
33:
34: public boolean isEmpty() {
35:
36: return false;
37: }
38:
39: public boolean containsKey(Object key) {
40:
41: return false;
42: }
43:
44: public boolean containsValue(Object value) {
45:
46: return false;
47: }
48:
49: public List<String> get(Object key) {
50:
51: return null;
52: }
53:
54: public List<String> put(String key, List<String> value) {
55:
56: return null;
57: }
58:
59: public List<String> remove(Object key) {
60:
61: return null;
62: }
63:
64: public void putAll(Map<? extends String, ? extends List<String>> t) {
65:
66: }
67:
68: public void clear() {
69:
70: }
71:
72: public Set<String> keySet() {
73:
74: return null;
75: }
76:
77: public Collection<List<String>> values() {
78:
79: return null;
80: }
81:
82: public Set<Entry<String, List<String>>> entrySet() {
83:
84: return null;
85: }
86:
87: }
|