blob: 065b7d7dbb667a6f91eb70b34146a5b13b8221d6 [file] [log] [blame]
// Java class go.ignore.S is a proxy for talking to a Go program.
// gobind -lang=java ignore
//
// File is generated by gobind. Do not edit.
package go.ignore;
import go.Seq;
public final class S extends Seq.Proxy implements I {
private S(go.Seq.Ref ref) { super(ref); }
// skipped field S.F with unsupported type: *types.Interface
// skipped method S.Argument with unsupported parameter or return types
// skipped method S.Result with unsupported parameter or return types
@Override public boolean equals(Object o) {
if (o == null || !(o instanceof S)) {
return false;
}
S that = (S)o;
// skipped field S.F with unsupported type: *types.Interface
return true;
}
@Override public int hashCode() {
return java.util.Arrays.hashCode(new Object[] {});
}
@Override public String toString() {
StringBuilder b = new StringBuilder();
b.append("S").append("{");
return b.append("}").toString();
}
}
// Java class go.ignore.I is a proxy for talking to a Go program.
// gobind -lang=java ignore
//
// File is generated by gobind. Do not edit.
package go.ignore;
import go.Seq;
public interface I {
// skipped method I.Argument with unsupported parameter or return types
// skipped method I.Result with unsupported parameter or return types
}
// Java class go.ignore.Ignore is a proxy for talking to a Go program.
// gobind -lang=java ignore
//
// File is generated by gobind. Do not edit.
package go.ignore;
import go.Seq;
public abstract class Ignore {
static {
Seq.touch(); // for loading the native library
init();
}
private Ignore() {} // 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 proxyI extends Seq.Proxy implements I {
proxyI(Seq.Ref ref) { super(ref); }
// skipped method I.Argument with unsupported parameter or return types
// skipped method I.Result with unsupported parameter or return types
}
// skipped const NamedConst with unsupported type: *types.Const
// skipped variable V with unsupported type: *types.Interface
// skipped variable Var with unsupported type: *types.Interface
// skipped function Argument with unsupported parameter or return types
// skipped function Result with unsupported parameter or return types
}