1 21 package com.db4o; 22 23 import com.db4o.inside.marshall.*; 24 25 class YapFieldNull extends YapField{ 26 27 public YapFieldNull(){ 28 super(null); 29 } 30 31 YapComparable prepareComparison(Object obj){ 32 return Null.INSTANCE; 33 } 34 35 Object read(MarshallerFamily mf, YapWriter a_bytes) { 36 return null; 37 } 38 39 Object readQuery(Transaction a_trans, MarshallerFamily mf, YapReader a_reader) throws CorruptionException { 40 return null; 41 } 42 } 43 | Popular Tags |