KickJava   Java API By Example, From Geeks To Geeks.

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


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.dna.api.DNAWriter;
7
8 /**
9  * 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 }
Popular Tags