KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > change > TCChangeBufferEventVisitor


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.object.change;
5
6 import com.tc.object.change.event.ArrayElementChangeEvent;
7 import com.tc.object.change.event.LogicalChangeEvent;
8 import com.tc.object.change.event.PhysicalChangeEvent;
9
10
11 public interface TCChangeBufferEventVisitor {
12
13   void visitLogicalEvent(LogicalChangeEvent event);
14
15   void visitPhysicalChangeEvent(PhysicalChangeEvent event);
16
17   void visitArrayElementChangeEvent(ArrayElementChangeEvent event);
18
19 }
20
21
Popular Tags