~andresfib/jeliot3/test

« back to all changes in this revision

Viewing changes to src/jeliot/mcode/input/EasyInInputHandler.java

  • Committer: jeliot
  • Date: 2007-08-28 10:28:56 UTC
  • Revision ID: cvs-1:jeliot-20070828102856-dawmu5kwrtwq7p3i
Updated input handling to better "support" unsupported methods, e.g, hasNext() -AM

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
        return m.getName().equals("getShort");
44
44
    }
45
45
 
46
 
 
 
46
        public boolean isBooleanInputMethod(Method m) {
 
47
                return false;
 
48
        }
47
49
 
48
50
    public Object handleInput(Class aClass) {
49
51
        if (aClass.equals(int.class))
69
71
    }
70
72
 
71
73
 
 
74
 
72
75
        
73
76
}