Home | History | Annotate | Download | only in protocol

Lines Matching refs:map

35 import java.util.Map;
49 private Map map = null;
65 if (this.map != null) {
66 obj = this.map.get(id);
78 if (this.map == null) {
79 this.map = new HashMap();
81 this.map.put(id, obj);
88 if (this.map != null) {
89 return this.map.remove(id);