|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.mozilla.jss.util.NativeProxy
public abstract class NativeProxy
NativeProxy, a superclass for Java classes that mirror C data structures. It contains some code to help make sure that native memory is getting freed properly.
Constructor Summary | |
---|---|
NativeProxy(byte[] pointer)
Create a NativeProxy from a byte array representing a C pointer. |
Method Summary | |
---|---|
static void |
assertRegistryEmpty()
Assert that the Registry is empty. |
boolean |
equals(java.lang.Object obj)
Deep comparison operator. |
protected void |
finalize()
Finalize this NativeProxy by releasing its native resources. |
long |
getRegistryIndex()
|
static java.util.Enumeration |
getRegistryIndices()
|
protected abstract void |
releaseNativeResources()
Release the native resources used by this proxy. |
Methods inherited from class java.lang.Object |
---|
clone, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public NativeProxy(byte[] pointer)
pointer
- A byte array, created with JSS_ptrToByteArray, that
contains a pointer pointing to a native data structure. The
NativeProxy instance acts as a proxy for that native data structure.Method Detail |
---|
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
obj
has the same underlying native
pointer. false if the obj
is null or has
a different underlying native pointer.protected abstract void releaseNativeResources()
You don't call this method; NativeProxy.finalize() calls it for you.
You must declare a finalize() method which calls super.finalize().
protected void finalize() throws java.lang.Throwable
finalize
in class java.lang.Object
java.lang.Throwable
public static java.util.Enumeration getRegistryIndices()
getRegistryIndex()
public long getRegistryIndex()
getRegistryIndices()
public static void assertRegistryEmpty()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |