Source notfound = code.getSource();
Switch select = code.select();
for(int i=0; i<n; i++) {
select.addCase(methods[i].getName().substring(prefixLength).hashCode());
}
select.end();
Iterator iter = select.getCases();
while(iter.hasNext()) {
Switch.Case kase = (Switch.Case)iter.next();
kase.bind();
for(int i=0; i<n; i++) {