27 lines
565 B
Text
27 lines
565 B
Text
|
// 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_();
|
||
|
}
|