There was a discussion a year ago about making methods and types lowercase in ObjC (https://github.com/golang/go/issues/12889), which was done (https://go-review.googlesource.com/#/c/15780/), alas the suggested Java lower casing was never addressed. This CL converts all generated Java methods to lower case. Change-Id: Ia2f28519bc59362877881636109ddfc651b24960 Reviewed-on: https://go-review.googlesource.com/28494 Reviewed-by: Elias Naur <elias.naur@gmail.com> Reviewed-by: David Crawshaw <crawshaw@golang.org>
26 lines
556 B
Plaintext
26 lines
556 B
Plaintext
// Java class go.try_.Try is a proxy for talking to a Go program.
|
|
// gobind -lang=java try
|
|
//
|
|
// File is generated by gobind. Do not edit.
|
|
package go.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_();
|
|
}
|