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.change.event.ArrayElementChangeEvent;
07: import com.tc.object.change.event.LogicalChangeEvent;
08: import com.tc.object.change.event.PhysicalChangeEvent;
09:
10: public interface TCChangeBufferEventVisitor {
11:
12: void visitLogicalEvent(LogicalChangeEvent event);
13:
14: void visitPhysicalChangeEvent(PhysicalChangeEvent event);
15:
16: void visitArrayElementChangeEvent(ArrayElementChangeEvent event);
17:
18: }
|