1 21 22 package org.apache.derbyTesting.unitTests.services; 23 24 import org.apache.derby.iapi.error.StandardException; 25 26 32 33 public class T_DiagTestClass1 34 { 35 protected String state; 36 37 public T_DiagTestClass1(String input_state) 38 { 39 this.state = input_state; 40 } 41 42 43 44 public String toString() 45 { 46 return("T_DiagTestClass1.toString(): " + state); 47 } 48 } 49 | Popular Tags |