1 21 22 package org.apache.derby.iapi.store.raw; 23 24 import org.apache.derby.iapi.services.diag.DiagnosticableGeneric; 25 26 import java.util.Properties ; 27 28 34 35 public class D_ContainerKey extends DiagnosticableGeneric 36 { 37 38 44 public String diag() 45 { 46 return(diag_object.toString()); 47 } 48 49 55 public void diag_detail(Properties prop) 56 { 57 ContainerKey key = (ContainerKey) diag_object; 58 59 prop.put(RowLock.DIAG_CONTAINERID, Long.toString(key.getContainerId())); 60 61 prop.put(RowLock.DIAG_SEGMENTID, Long.toString(key.getSegmentId())); 62 63 prop.put(RowLock.DIAG_PAGENUM, Integer.toString(0)); 67 prop.put(RowLock.DIAG_RECID, Integer.toString(0)); 68 } 69 } 70 | Popular Tags |