1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
// Code generated by gobind. DO NOT EDIT.
// Java class try_.Try is a proxy for talking to a Go program.
//
// autogenerated by gobind -lang=java try
package try_;
import go.Seq;
public abstract class Try {
static {
Seq.touch(); // for loading the native library
_init();
}
private Try() {} // uninstantiable
// touch is called from other bound packages to initialize this package
public static void touch() {}
private static native void _init();
public static native String this_();
}
|