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
|
package java_integration.fixtures;
public class ValueReceivingInterfaceHandler {
private ValueReceivingInterface vri;
public ValueReceivingInterfaceHandler(ValueReceivingInterface vri) {
this.vri = vri;
}
public Object receiveObject(Object obj) {
return vri.receiveObject(obj);
}
public String receiveString(String string) {
return vri.receiveString(string);
}
public byte receiveByte(byte b) {
return vri.receiveByte(b);
}
public short receiveShort(short s) {
return vri.receiveShort(s);
}
public char receiveChar(char c) {
return vri.receiveChar(c);
}
public int receiveInt(int i) {
return vri.receiveInt(i);
}
public long receiveLong(long l) {
return vri.receiveLong(l);
}
public float receiveFloat(float f) {
return vri.receiveFloat(f);
}
public double receiveDouble(double d) {
return vri.receiveDouble(d);
}
public boolean receiveTrue(boolean t) {
return vri.receiveTrue(t);
}
public boolean receiveFalse(boolean f) {
return vri.receiveFalse(f);
}
public Object receiveNull(Object nil) {
return vri.receiveNull(nil);
}
public String receiveLongAndDouble(long l, double d) {
return vri.receiveLongAndDouble(l, d);
}
public Byte receiveByteObj(Byte b) {
return vri.receiveByteObj(b);
}
public Short receiveShortObj(Short s) {
return vri.receiveShortObj(s);
}
public Character receiveCharObj(Character c) {
return vri.receiveCharObj(c);
}
public Integer receiveIntObj(Integer i) {
return vri.receiveIntObj(i);
}
public Long receiveLongObj(Long l) {
return vri.receiveLongObj(l);
}
public Float receiveFloatObj(Float f) {
return vri.receiveFloatObj(f);
}
public Double receiveDoubleObj(Double d) {
return vri.receiveDoubleObj(d);
}
public Boolean receiveTrueObj(Boolean t) {
return vri.receiveTrueObj(t);
}
public Boolean receiveFalseObj(Boolean f) {
return vri.receiveFalseObj(f);
}
}
|