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
641 B
Plaintext
26 lines
641 B
Plaintext
// Java class com.example.customprefix.Customprefix is a proxy for talking to a Go program.
|
|
// gobind -lang=java -javapkg=com.example customprefix
|
|
//
|
|
// File is generated by gobind. Do not edit.
|
|
package com.example.customprefix;
|
|
|
|
import go.Seq;
|
|
|
|
public abstract class Customprefix {
|
|
static {
|
|
Seq.touch(); // for loading the native library
|
|
_init();
|
|
}
|
|
|
|
private Customprefix() {} // uninstantiable
|
|
|
|
// touch is called from other bound packages to initialize this package
|
|
public static void touch() {}
|
|
|
|
private static native void _init();
|
|
|
|
|
|
|
|
public static native void f();
|
|
}
|