Methods Summary |
---|
protected static final void | affirm(boolean condition)
if (!condition)
throw new InternalError("assertion failed.");//NOI18N
|
protected static final void | affirm(boolean condition, java.lang.String msg)
if (!condition)
throw new InternalError("assertion failed: " + msg);//NOI18N
|
protected static final void | affirm(java.lang.Object object)
if (object == null)
throw new InternalError("assertion failed.");//NOI18N
|
protected static final void | affirm(java.lang.Object object, java.lang.String msg)
if (object == null)
throw new InternalError("assertion failed: " + msg);//NOI18N
|