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.change;
05:
06: import com.tc.object.dna.api.DNAWriter;
07:
08: /**
09: * TCChangeBufferEvents are discreet changes to a managed object
10: *
11: * @author orion
12: */
13: public interface TCChangeBufferEvent {
14:
15: public void write(DNAWriter to);
16:
17: }
|