package tgt; public class SimpleClass004 { public static int toInt(String s) { return 256; } public static String fromInt(int i) { return Integer.toString(i); } public static int getMe42() { return 42; } }