1 21 22 package org.apache.derby.iapi.store.raw; 23 24 import org.apache.derby.iapi.services.diag.Diagnosticable; 25 import org.apache.derby.iapi.services.diag.DiagnosticableGeneric; 26 import org.apache.derby.iapi.services.diag.DiagnosticUtil; 27 28 import org.apache.derby.iapi.error.StandardException; 29 30 36 37 public class D_ContainerLock extends DiagnosticableGeneric 38 { 39 private static String [] names = { "CIS", "CIX", "CS", "CU", "CX" }; 41 42 50 public String diag() 51 throws StandardException 52 { 53 ContainerLock mode = (ContainerLock) diag_object; 54 55 return(names[mode.getType()]); 56 } 57 } 58 | Popular Tags |