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.objectserver.core.api;
05:
06: import com.tc.object.ObjectID;
07: import com.tc.object.dna.api.DNA;
08: import com.tc.object.dna.api.DNAWriter;
09:
10: public class TestDNAWriter implements DNAWriter {
11:
12: public DNA dna;
13:
14: public TestDNAWriter() {
15: //
16: }
17:
18: public void addLogicalAction(int method, Object[] parameters) {
19: //
20: }
21:
22: public void addPhysicalAction(String field, Object value) {
23: //
24: }
25:
26: public void finalizeDNA(boolean isDeltaDNA) {
27: //
28: }
29:
30: public void addArrayElementAction(int index, Object value) {
31: //
32: }
33:
34: public void addEntireArray(Object value) {
35: //
36: }
37:
38: public void addLiteralValue(Object value) {
39: //
40: }
41:
42: public void setParentObjectID(ObjectID id) {
43: //
44: }
45:
46: public void setArrayLength(int length) {
47: //
48: }
49:
50: public void addPhysicalAction(String fieldName, Object value,
51: boolean canBeReference) {
52: //
53: }
54:
55: public void addClassLoaderAction(String classLoaderFieldName,
56: Object value) {
57: //
58:
59: }
60:
61: public void addSubArrayAction(int start, Object array, int length) {
62: //
63: }
64:
65: }
|