--
You received this message because you are subscribed to the Google Groups "Xtend Programming Language" group.
To unsubscribe from this group and stop receiving emails from it, send an email to xtend-lang+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
protected void _uno(final int i) {
}
protected void _uno(final String i) {
}
public void uno(final Object i) {
if (i instanceof Integer) {
_uno((Integer)i);
return;
} else if (i instanceof String) {
_uno((String)i);
return;
} else {
throw new IllegalArgumentException("Unhandled parameter types: " +
Arrays.<Object>asList(i).toString());
}
}