KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > objectserver > mgmt > MapEntryFacadeImpl


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.objectserver.mgmt;
5
6 import java.io.Serializable JavaDoc;
7
8 public class MapEntryFacadeImpl implements MapEntryFacade, Serializable JavaDoc {
9
10   private final Object JavaDoc value;
11   private final Object JavaDoc key;
12
13   public MapEntryFacadeImpl(Object JavaDoc key, Object JavaDoc value) {
14     this.key = key;
15     this.value = value;
16   }
17
18   public Object JavaDoc getKey() {
19     return this.key;
20   }
21
22   public Object JavaDoc getValue() {
23     return this.value;
24   }
25
26 }
27
Popular Tags