Added isCreated() method for consistency

This commit is contained in:
Caspian Rychlik-Prince 2003-08-02 10:57:45 +00:00
parent 761a1cece3
commit 70f3ca8664
1 changed files with 8 additions and 0 deletions

View File

@ -179,4 +179,12 @@ public abstract class BaseAL {
* Native method the destroy the AL
*/
protected static native void nDestroy();
/**
* @return true if AL has been created
*/
public static boolean isCreated() {
return created;
}
}