I am having another problem, when i entered in this code
private static boolean number(String Number, Interface, theStub){
try{
String List = theStub.getnumber();
StringTokenizer tokens = new StringTokenizer (List);
while (tokens.hasMoreTokens())
if (tokens.nextToken().equalsIgnoreCase(Number))
return true;
}catch (Exception e) {System.out.println("Error : " + e); }
return false;
}
It was throwing me back an error class or interface expected but i can not see the problem with the code, does anyone know where i am going wrong.