01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.object.applicator;
05:
06: import com.tc.object.ClientObjectManager;
07: import com.tc.object.dna.api.DNAEncoding;
08:
09: public class PartialHashMapApplicator extends HashMapApplicator {
10:
11: public PartialHashMapApplicator(DNAEncoding encoding) {
12: super (encoding);
13: }
14:
15: /*
16: * This applicator is to be used where the Map supports partial collection. (ex. HashMap)
17: */
18: protected Object getObjectForValue(
19: ClientObjectManager objectManager, Object v) {
20: return v;
21: }
22:
23: }
|