On 21.04.2004 20:14, Marc Portier wrote:

NPE is really bad - not only here - for the two mentioned reasons. But if you insist on your NPE you can change Ugo's proposal to

if (id == null) {
  throw new NPE("id must not be null");
}

So we have NPE, which is RuntimeE, meaningful message and early failure :)


Sorry guys, be honest: you can't expect every deref in Java to be proceeded by this kind of test?



I admit NPE's are bad, but they indicate programming errors
this one will surely come up during development test (believe me: getId() is not something that will happen only in rare cases, I think every sweap through any widget lifecycle is bound to call it at least twice IMO)

But you can not give the form developer a NPE IMO as it happened for the bindings:


widget = getWidget(nonExistingId);

widget.aFunction();

If this won't be the case for your proposal I'm ok with it.

Joerg

Reply via email to