If i want to have a class IntegerResult that holds Integer. How i do that?
i want
a class IntegerResult that holds integer and returns that integer
i want
Code:
public class IntegerResult implements IIntegerResult{
Integer i =null;
public IntegerResult getValue() [B]here i want it to return Integer[/B]
public IntegerResult(Integer i){
this.i=i;
}
}
Comment