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>
25 lines
504 B
Plaintext
25 lines
504 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_try__Try__1init(JNIEnv *env, jclass _unused) {
|
|
jclass clazz;
|
|
}
|
|
|
|
JNIEXPORT jstring JNICALL
|
|
Java_try__Try_this_1(JNIEnv* env, jclass _clazz) {
|
|
nstring r0 = proxytry__This();
|
|
jstring _r0 = go_seq_to_java_string(env, r0);
|
|
return _r0;
|
|
}
|
|
|