If a Go struct or interface has the same name as its package class, append an underscore to the generated Java class name. Fixes golang/go#23327. Change-Id: Ib680af35c956801073a0effb510a3ed9bbb8b9d1 Reviewed-on: https://go-review.googlesource.com/87656 Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
74 lines
1.4 KiB
Plaintext
74 lines
1.4 KiB
Plaintext
// Objective-C API for talking to structs Go package.
|
|
// gobind -lang=objc structs
|
|
//
|
|
// File is generated by gobind. Do not edit.
|
|
|
|
#ifndef __Structs_H__
|
|
#define __Structs_H__
|
|
|
|
@import Foundation;
|
|
#include "Universe.objc.h"
|
|
|
|
|
|
@class StructsS;
|
|
@class StructsS2;
|
|
@class StructsStructs;
|
|
@protocol StructsI;
|
|
@class StructsI;
|
|
|
|
@protocol StructsI <NSObject>
|
|
- (void)m;
|
|
@end
|
|
|
|
@interface StructsS : NSObject <goSeqRefInterface> {
|
|
}
|
|
@property(strong, readonly) id _ref;
|
|
|
|
- (instancetype)initWithRef:(id)ref;
|
|
- (instancetype)init;
|
|
- (double)x;
|
|
- (void)setX:(double)v;
|
|
- (double)y;
|
|
- (void)setY:(double)v;
|
|
- (StructsS*)identity:(NSError**)error;
|
|
- (double)sum;
|
|
@end
|
|
|
|
@interface StructsS2 : NSObject <goSeqRefInterface, StructsI> {
|
|
}
|
|
@property(strong, readonly) id _ref;
|
|
|
|
- (instancetype)initWithRef:(id)ref;
|
|
- (instancetype)init;
|
|
- (void)m;
|
|
- (NSString*)string;
|
|
@end
|
|
|
|
/**
|
|
* Structs is a struct with the same name as its package.
|
|
*/
|
|
@interface StructsStructs : NSObject <goSeqRefInterface, StructsI> {
|
|
}
|
|
@property(strong, readonly) id _ref;
|
|
|
|
- (instancetype)initWithRef:(id)ref;
|
|
- (instancetype)init;
|
|
- (void)m;
|
|
@end
|
|
|
|
FOUNDATION_EXPORT StructsS* StructsIdentity(StructsS* s);
|
|
|
|
FOUNDATION_EXPORT StructsS* StructsIdentityWithError(StructsS* s, NSError** error);
|
|
|
|
@class StructsI;
|
|
|
|
@interface StructsI : NSObject <goSeqRefInterface, StructsI> {
|
|
}
|
|
@property(strong, readonly) id _ref;
|
|
|
|
- (instancetype)initWithRef:(id)ref;
|
|
- (void)m;
|
|
@end
|
|
|
|
#endif
|