Ok. Got it.
Code:
package Chapter6Project1;
public class ConversionTester
{
public ConversionTester()
{
}
public static void main(String[] args) throws Exception
{
Conversion aConversion = new Conversion();
aConversion.stringToInteger1("5");
aConversion.stringToDouble1("5.5");
Integer u = new Integer(6);
aConversion.wrapperToString(u);
}
} I had to put my Integer statement before, and then pass the variable as a variable to the aConversion instead of a straight int variable.
Thanx Bel.