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.bytecode;
05:
06: import java.util.Collection;
07:
08: public interface TCMap {
09:
10: public void __tc_applicator_put(Object key, Object value);
11:
12: public void __tc_applicator_remove(Object key);
13:
14: public void __tc_remove_logical(Object key);
15:
16: public Collection __tc_getAllLocalEntriesSnapshot();
17:
18: public Collection __tc_getAllEntriesSnapshot();
19: }
|