1 4 package com.tc.objectserver.core.api; 5 6 import com.tc.object.ObjectID; 7 import com.tc.object.dna.api.DNA; 8 import com.tc.object.dna.api.DNAWriter; 9 10 public class TestDNAWriter implements DNAWriter { 11 12 public DNA dna; 13 14 public TestDNAWriter() { 15 } 17 18 public void addLogicalAction(int method, Object [] parameters) { 19 } 21 22 public void addPhysicalAction(String field, Object value) { 23 } 25 26 public void finalizeDNA() { 27 } 29 30 public void addArrayElementAction(int index, Object value) { 31 } 33 34 public void addEntireArray(Object value) { 35 } 37 38 public void addLiteralValue(Object value) { 39 } 41 42 public void setParentObjectID(ObjectID id) { 43 } 45 46 public void setArrayLength(int length) { 47 } 49 50 public void addPhysicalAction(String fieldName, Object value, boolean canBeReference) { 51 } 53 54 public void addClassLoaderAction(String classLoaderFieldName, Object value) { 55 57 } 58 59 public void addSubArrayAction(int start, Object array, int length) { 60 } 62 63 } 64 | Popular Tags |