Convert Go documentation to JavaDoc tags (/** ... */). Since the .aar file format doesn't support source files, gomobile will create a package-sources.jar along with the main package.aar. For Objective-C, JavaDoc-style comments seems to work as well, judging by manual inspection of Xcode quick help. Change-Id: I47fe5b6804681d459a873be37a44610d392166ef Reviewed-on: https://go-review.googlesource.com/52330 Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
23 lines
535 B
Plaintext
23 lines
535 B
Plaintext
// JNI function headers for the Go <=> Java bridge.
|
|
// gobind -lang=java doc
|
|
//
|
|
// File is generated by gobind. Do not edit.
|
|
|
|
#ifndef __Doc_H__
|
|
#define __Doc_H__
|
|
|
|
#include <jni.h>
|
|
|
|
extern jclass proxy_class_doc_I;
|
|
extern jmethodID proxy_class_doc_I_cons;
|
|
|
|
void cproxydoc_I_IM(int32_t refnum);
|
|
|
|
extern jclass proxy_class_doc_NoDoc;
|
|
extern jmethodID proxy_class_doc_NoDoc_cons;
|
|
extern jclass proxy_class_doc_S;
|
|
extern jmethodID proxy_class_doc_S_cons;
|
|
extern jclass proxy_class_doc_S2;
|
|
extern jmethodID proxy_class_doc_S2_cons;
|
|
#endif
|