The Objective-C bindings was recently changed to support the empty name prefix and to use that as the default. This CLs changed the Java generators in the same way, supporting the empty Java package and using it as the default. Change-Id: I857affce686c67638a2b6c4e1da5d6a88d7ba560 Reviewed-on: https://go-review.googlesource.com/34778 Reviewed-by: David Crawshaw <crawshaw@golang.org>
26 lines
550 B
Plaintext
26 lines
550 B
Plaintext
// Java class try_.Try is a proxy for talking to a Go program.
|
|
// gobind -lang=java try
|
|
//
|
|
// File is generated by gobind. Do not edit.
|
|
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_();
|
|
}
|