eclipse 为什么run as里面没有选项


public static boolean isNumeric(String str){
for (int i = str.length();--i>=0;){
if (!Character.isDigit(str.charAt(i))){
return false;
}
}
return true;
}
没新建模拟器当然什么都没有拉