Searched defs:finalize (Results 1 - 25 of 118) sorted by relevance

12345

/openjdk7/jdk/test/java/beans/Introspector/memory/
H A DSimpleClassLoader.java60 protected void finalize() throws Throwable { method in class:SimpleClassLoader
61 super.finalize();
/openjdk7/jdk/test/java/lang/System/finalization/
H A DFinExit.java38 public void finalize() { method in class:FinExit
H A DFinThreads.java62 public void finalize() throws InterruptedException { method in class:FinThreads.Foo
/openjdk7/langtools/test/tools/javac/diags/examples/
H A DEnumNoFinalize.java24 // key: compiler.err.enum.no.finalize
31 public void finalize() { } method in class:EnumNoFinalize
/openjdk7/langtools/test/tools/javac/enum/
H A DNoFinal2.java34 protected void finalize() { method in class:NoFinal2
H A DNoFinal3.java34 public void finalize() { method in class:NoFinal3
H A DNoFinal4.java34 private void finalize() { method in class:NoFinal4
H A DNoFinal5.java34 void finalize() { method in class:NoFinal5
/openjdk7/jdk/src/macosx/classes/com/apple/concurrent/
H A DLibDispatchRetainedResource.java40 protected void finalize() throws Throwable { method in class:LibDispatchRetainedResource
/openjdk7/jdk/src/share/classes/com/sun/imageio/stream/
H A DStreamFinalizer.java34 * finalize() method, but in a number of its public subclasses
35 * (e.g. FileImageInputStream) we override the finalize() method to be
48 * both are no longer reachable, the StreamFinalizer.finalize() method will
54 * stream classes had non-empty finalize() methods.)
63 protected void finalize() throws Throwable { method in class:StreamFinalizer
69 super.finalize();
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DFinalizeInflater.java69 protected void finalize() throws Throwable { method in class:FinalizeInflater.Wrapper
70 super.finalize();
/openjdk7/jdk/src/share/classes/java/awt/
H A DPrintJob.java76 public void finalize() { method in class:PrintJob
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCFRetainedResource.java74 protected void finalize() throws Throwable { method in class:CFRetainedResource
/openjdk7/jdk/test/com/sun/jdi/
H A DClassLoaderTarg.java86 protected void finalize() { method in class:ClassLoaderTarg
89 super.finalize();
H A DFinalizerTest.java27 * @summary Test debugger operations in finalize() methods
45 * Debuggee which exercises a finalize() method. There's no guarantee
62 protected void finalize() throws Throwable { method in class:FinalizerTarg.BigObject
65 * invoke the finalize method for its superclass, [...] usually good
68 super.finalize();
133 "finalize", "()V");
/openjdk7/jdk/test/java/io/FileInputStream/
H A DFinalizeShdCallClose.java28 * @summary Test to ensure that FIS.finalize() invokes the close() method as per
47 public void finalize() { method in class:FinalizeShdCallClose.MyStream
49 super.finalize();
84 ms.finalize();
/openjdk7/jdk/test/java/io/FileOutputStream/
H A DFinalizeShdCallClose.java28 * @summary Test to ensure that FOS.finalize() invokes the close() method as per
47 public void finalize() { method in class:FinalizeShdCallClose.MyStream
49 super.finalize();
84 ms.finalize();
/openjdk7/jdk/src/share/classes/java/lang/
H A DObject.java509 * A subclass overrides the {@code finalize} method to dispose of
512 * The general contract of {@code finalize} is that it is invoked
518 * finalized. The {@code finalize} method may take any action, including
520 * of {@code finalize}, however, is to perform cleanup actions before
521 * the object is irrevocably discarded. For example, the finalize method
526 * The {@code finalize} method of class {@code Object} performs no
531 * invoke the {@code finalize} method for any given object. It is
532 * guaranteed, however, that the thread that invokes finalize will not
533 * be holding any user-visible synchronization locks when finalize is
534 * invoked. If an uncaught exception is thrown by the finalize metho
553 protected void finalize() throws Throwable { } method in class:Object
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/sasl/
H A DDefaultCallbackHandler.java132 protected void finalize() throws Throwable { method in class:DefaultCallbackHandler
/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DPointer.java35 @Override protected final synchronized void finalize() throws Throwable { method in class:Pointer
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DKeyProtector.java150 protected void finalize() { method in class:KeyProtector
/openjdk7/jdk/test/javax/swing/JInternalFrame/
H A DInternalFrameIsNotCollectedTest.java132 protected void finalize() { method in class:InternalFrameIsNotCollectedTest.CustomInternalFrame
/openjdk7/jdk/src/share/classes/sun/rmi/log/
H A DLogInputStream.java131 protected void finalize() throws IOException { method in class:LogInputStream
/openjdk7/langtools/test/tools/javac/
H A DObject1.java45 protected void finalize() throws Throwable { } method in class:Object
H A DObject2.java45 protected void finalize() throws Throwable { } method in class:Object

Completed in 74 milliseconds

12345