|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.mozilla.jss.util.Assert
public class Assert
C-style assertions in Java. These methods are only active in debug mode (org.mozilla.jss.Debug.DEBUG==true).
Debug
,
AssertionException
Constructor Summary | |
---|---|
Assert()
|
Method Summary | |
---|---|
static void |
_assert(boolean cond)
Assert that a condition is true. |
static void |
_assert(boolean cond,
java.lang.String msg)
Assert that a condition is true. |
static void |
notReached()
Throw an AssertionException if this statement is reached. |
static void |
notReached(java.lang.String msg)
Throw an AssertionException if this statement is reached. |
static void |
notYetImplemented(java.lang.String msg)
Throw an AssertionException because functionlity is not yet implemented. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Assert()
Method Detail |
---|
public static void _assert(boolean cond)
cond
- The condition that is being tested.public static void _assert(boolean cond, java.lang.String msg)
cond
- The condition that is being tested.msg
- A message describing what is wrong if the condition is false.public static void notReached(java.lang.String msg)
msg
- A message describing what was reached.public static void notReached()
public static void notYetImplemented(java.lang.String msg)
msg
- A message describing what is not implemented.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |