File: interfaces.java.golden

package info (click to toggle)
golang-golang-x-mobile 0.0~git20250520.a1d9079%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,784 kB
  • sloc: objc: 1,512; java: 1,489; ansic: 1,159; xml: 365; asm: 34; sh: 14; makefile: 5
file content (277 lines) | stat: -rw-r--r-- 6,911 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
// Code generated by gobind. DO NOT EDIT.

// Java class interfaces.Error is a proxy for talking to a Go program.
//
//   autogenerated by gobind -lang=java interfaces
package interfaces;

import go.Seq;

public interface Error {
    public void err() throws Exception;
    
}

// Code generated by gobind. DO NOT EDIT.

// Java class interfaces.I is a proxy for talking to a Go program.
//
//   autogenerated by gobind -lang=java interfaces
package interfaces;

import go.Seq;

public interface I {
    public int rand();
    
}

// Code generated by gobind. DO NOT EDIT.

// Java class interfaces.I1 is a proxy for talking to a Go program.
//
//   autogenerated by gobind -lang=java interfaces
package interfaces;

import go.Seq;

/**
 * not implementable
 */
public interface I1 {
    public void j();
    
}

// Code generated by gobind. DO NOT EDIT.

// Java class interfaces.I2 is a proxy for talking to a Go program.
//
//   autogenerated by gobind -lang=java interfaces
package interfaces;

import go.Seq;

/**
 * not implementable
 */
public interface I2 {
    public void g();
    
}

// Code generated by gobind. DO NOT EDIT.

// Java class interfaces.I3 is a proxy for talking to a Go program.
//
//   autogenerated by gobind -lang=java interfaces
package interfaces;

import go.Seq;

/**
 * implementable
(the implementor has to find a source of I1s)
 */
public interface I3 {
    public I1 f();
    
}

// Code generated by gobind. DO NOT EDIT.

// Java class interfaces.Interfaces_ is a proxy for talking to a Go program.
//
//   autogenerated by gobind -lang=java interfaces
package interfaces;

import go.Seq;

/**
 * Interfaces is an interface with the same name as its package.
 */
public interface Interfaces_ {
    public void someMethod();
    
}

// Code generated by gobind. DO NOT EDIT.

// Java class interfaces.LargerI is a proxy for talking to a Go program.
//
//   autogenerated by gobind -lang=java interfaces
package interfaces;

import go.Seq;

public interface LargerI extends I, SameI {
    public void anotherFunc();
    public int rand();
    
}

// Code generated by gobind. DO NOT EDIT.

// Java class interfaces.SameI is a proxy for talking to a Go program.
//
//   autogenerated by gobind -lang=java interfaces
package interfaces;

import go.Seq;

public interface SameI {
    public int rand();
    
}

// Code generated by gobind. DO NOT EDIT.

// Java class interfaces.WithParam is a proxy for talking to a Go program.
//
//   autogenerated by gobind -lang=java interfaces
package interfaces;

import go.Seq;

public interface WithParam {
    public void hasParam(boolean p0);
    
}

// Code generated by gobind. DO NOT EDIT.

// Java class interfaces.Interfaces is a proxy for talking to a Go program.
//
//   autogenerated by gobind -lang=java interfaces
package interfaces;

import go.Seq;

public abstract class Interfaces {
    static {
        Seq.touch(); // for loading the native library
        _init();
    }
    
    private Interfaces() {} // uninstantiable
    
    // touch is called from other bound packages to initialize this package
    public static void touch() {}
    
    private static native void _init();
    
    private static final class proxyError implements Seq.Proxy, Error {
        private final int refnum;
        
        @Override public final int incRefnum() {
              Seq.incGoRef(refnum, this);
              return refnum;
        }
        
        proxyError(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
        
        public native void err() throws Exception;
    }
    private static final class proxyI implements Seq.Proxy, I {
        private final int refnum;
        
        @Override public final int incRefnum() {
              Seq.incGoRef(refnum, this);
              return refnum;
        }
        
        proxyI(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
        
        public native int rand();
    }
    private static final class proxyI1 implements Seq.Proxy, I1 {
        private final int refnum;
        
        @Override public final int incRefnum() {
              Seq.incGoRef(refnum, this);
              return refnum;
        }
        
        proxyI1(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
        
        public native void j();
    }
    private static final class proxyI2 implements Seq.Proxy, I2 {
        private final int refnum;
        
        @Override public final int incRefnum() {
              Seq.incGoRef(refnum, this);
              return refnum;
        }
        
        proxyI2(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
        
        public native void g();
    }
    private static final class proxyI3 implements Seq.Proxy, I3 {
        private final int refnum;
        
        @Override public final int incRefnum() {
              Seq.incGoRef(refnum, this);
              return refnum;
        }
        
        proxyI3(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
        
        public native I1 f();
    }
    private static final class proxyInterfaces implements Seq.Proxy, Interfaces_ {
        private final int refnum;
        
        @Override public final int incRefnum() {
              Seq.incGoRef(refnum, this);
              return refnum;
        }
        
        proxyInterfaces(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
        
        public native void someMethod();
    }
    private static final class proxyLargerI implements Seq.Proxy, LargerI {
        private final int refnum;
        
        @Override public final int incRefnum() {
              Seq.incGoRef(refnum, this);
              return refnum;
        }
        
        proxyLargerI(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
        
        public native void anotherFunc();
        public native int rand();
    }
    private static final class proxySameI implements Seq.Proxy, SameI {
        private final int refnum;
        
        @Override public final int incRefnum() {
              Seq.incGoRef(refnum, this);
              return refnum;
        }
        
        proxySameI(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
        
        public native int rand();
    }
    private static final class proxyWithParam implements Seq.Proxy, WithParam {
        private final int refnum;
        
        @Override public final int incRefnum() {
              Seq.incGoRef(refnum, this);
              return refnum;
        }
        
        proxyWithParam(int refnum) { this.refnum = refnum; Seq.trackGoRef(refnum, this); }
        
        public native void hasParam(boolean p0);
    }
    
    
    public static native int add3(I r);
    public static native void callErr(Error e) throws Exception;
    public static native I seven();
}