KickJava   Java API By Example, From Geeks To Geeks.

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


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.exception.ImplementMe;
7 import com.tc.io.TCByteBufferOutputStream;
8 import com.tc.object.TCObject;
9 import com.tc.object.dna.api.DNACursor;
10 import com.tc.object.dna.impl.DNAEncoding;
11 import com.tc.object.dna.impl.ObjectStringSerializer;
12 import com.tc.object.tx.optimistic.OptimisticTransactionManager;
13
14 import gnu.trove.TIntObjectHashMap;
15
16 import java.util.List JavaDoc;
17 import java.util.Map JavaDoc;
18
19 public class TestTCChangeBuffer implements TCChangeBuffer {
20
21   public void fieldChanged(String JavaDoc classname, String JavaDoc fieldname, Object JavaDoc newValue, int index) {
22     throw new ImplementMe();
23
24   }
25
26   public void logicalInvoke(int method, Object JavaDoc[] parameters) {
27     throw new ImplementMe();
28
29   }
30
31   public void writeTo(TCByteBufferOutputStream output, ObjectStringSerializer serializer, DNAEncoding encoding) {
32     return;
33   }
34
35   public Map getPhysicalEvents() {
36     throw new ImplementMe();
37
38   }
39
40   public List JavaDoc getLogicalEvents() {
41     throw new ImplementMe();
42   }
43
44   public TIntObjectHashMap getArrayEvents() {
45     throw new ImplementMe();
46   }
47
48   public TCObject getTCObject() {
49     throw new ImplementMe();
50   }
51
52   public void arrayChanged(int startPos, Object JavaDoc array, int length) {
53     throw new ImplementMe();
54
55   }
56
57   public int getTotalEventCount() {
58     throw new ImplementMe();
59   }
60
61   public int getType() {
62     throw new ImplementMe();
63   }
64
65   public DNACursor getDNACursor(OptimisticTransactionManager transactionManager) {
66     throw new ImplementMe();
67   }
68
69   public void accept(TCChangeBufferEventVisitor visitor) {
70     throw new ImplementMe();
71   }
72
73   public void literalValueChanged(Object JavaDoc newValue) {
74     throw new ImplementMe();
75
76   }
77 }
78
Popular Tags