| 1 | package org.dynjs.runtime.java; |
| 2 | |
| 3 | public abstract class Foobar implements Foo { |
| 4 | public abstract String doItWithParameters(String param, boolean tf); |
| 5 | |
| 6 | public abstract Integer doItWithInt(Integer param); |
| 7 | public abstract int doItWithPrimitiveInt(int param); |
| 8 | public abstract Long doItWithLong(Long param); |
| 9 | public abstract long doItWithPrimitiveLong(long param); |
| 10 | public abstract Short doItWithShort(Short param); |
| 11 | public abstract short doItWithPrimitiveShort(short param); |
| 12 | public abstract Float doItWithFloat(Float param); |
| 13 | public abstract float doItWithPrimitiveFloat(float param); |
| 14 | public abstract Double doItWithDouble(Double param); |
| 15 | public abstract double doItWithPrimitiveDouble(double param); |
| 16 | public abstract Boolean doItWithBoolean(Boolean param); |
| 17 | public abstract boolean doItWithPrimitiveBoolean(boolean param); |
| 18 | public abstract boolean doItWithObjectReturningBoolean(Object param); |
| 19 | public abstract Character doItWithChar(Character param); |
| 20 | public abstract char doItWithPrimitiveChar(char param); |
| 21 | public abstract Byte doItWithByte(Byte param); |
| 22 | public abstract byte doItWithPrimitiveByte(byte param); |
| 23 | |
| 24 | public abstract int[] doItWithPrimitiveIntArray(int[] param); |
| 25 | |
| 26 | public String callWithParameters(String param, boolean tf) { |
| 27 | return doItWithParameters(param, tf); |
| 28 | } |
| 29 | |
| 30 | public Integer callWithInt(Integer param) { |
| 31 | return doItWithInt(param); |
| 32 | } |
| 33 | public int callWithPrimitiveInt(int param) { |
| 34 | return doItWithPrimitiveInt(param); |
| 35 | } |
| 36 | public Long callWithLong(Long param) { |
| 37 | return doItWithLong(param); |
| 38 | } |
| 39 | public long callWithPrimitiveLong(long param) { |
| 40 | return doItWithPrimitiveLong(param); |
| 41 | } |
| 42 | public Short callWithShort(Short param) { |
| 43 | return doItWithShort(param); |
| 44 | } |
| 45 | public short callWithPrimitiveShort(short param) { |
| 46 | return doItWithPrimitiveShort(param); |
| 47 | } |
| 48 | public Float callWithFloat(Float param) { |
| 49 | return doItWithFloat(param); |
| 50 | } |
| 51 | public float callWithPrimitiveFloat(float param) { |
| 52 | return doItWithPrimitiveFloat(param); |
| 53 | } |
| 54 | public Double callWithDouble(Double param) { |
| 55 | return doItWithDouble(param); |
| 56 | } |
| 57 | public double callWithPrimitiveDouble(double param) { |
| 58 | return doItWithPrimitiveDouble(param); |
| 59 | } |
| 60 | public Boolean callWithBoolean(Boolean param) { |
nothing calls this directly
no outgoing calls
no test coverage detected