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>
25 lines
509 B
Plaintext
25 lines
509 B
Plaintext
// JNI functions for the Go <=> Java bridge.
|
|
// gobind -lang=java try
|
|
//
|
|
// File is generated by gobind. Do not edit.
|
|
|
|
#include <android/log.h>
|
|
#include <stdint.h>
|
|
#include "seq.h"
|
|
#include "_cgo_export.h"
|
|
#include "try.h"
|
|
|
|
|
|
JNIEXPORT void JNICALL
|
|
Java_go_try__Try__1init(JNIEnv *env, jclass _unused) {
|
|
jclass clazz;
|
|
}
|
|
|
|
JNIEXPORT jstring JNICALL
|
|
Java_go_try__Try_this_1(JNIEnv* env, jclass clazz) {
|
|
nstring r0 = proxytry__This();
|
|
jstring _r0 = go_seq_to_java_string(env, r0);
|
|
return _r0;
|
|
}
|
|
|