Searched refs:finalize (Results 1 - 25 of 141) sorted by relevance

123456

/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/protectedAccess/
H A DProtectedAccess_3.java37 public void finalize() throws Throwable {
38 ProtectedAccess_3.this.finalize();
/openjdk7/langtools/test/tools/javac/enum/
H A DNoFinal.java34 protected void finalize() {
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
H A DOkFinal.java33 protected void finalize(Void nil) {
/openjdk7/langtools/test/tools/javac/
H A DInterfaceObjectInheritance.java39 // so this reference to finalize should not compile.
40 i.finalize();
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
/openjdk7/jdk/src/share/classes/java/awt/
H A DPrintJob.java76 public void finalize() { method in class:PrintJob
/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/src/macosx/classes/com/apple/concurrent/
H A DLibDispatchRetainedResource.java40 protected void finalize() throws Throwable { method in class:LibDispatchRetainedResource
/openjdk7/jdk/test/sun/rmi/rmic/newrmic/equivalence/
H A DMyObjectImpl.java56 protected void finalize() throws Throwable { method in class:MyObjectImpl
59 super.finalize();
/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/windows/classes/sun/security/mscapi/
H A DKey.java63 protected void finalize() throws Throwable method in class:Key
74 super.finalize();
/openjdk7/jdk/test/java/lang/System/finalization/
H A DFinExit.java38 public void finalize() { method in class:FinExit
/openjdk7/hotspot/test/compiler/7190310/
H A DTest7190310.java46 protected void finalize() throws Throwable {
48 super.finalize();
/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/util/zip/ZipFile/
H A DFinalizeInflater.java69 protected void finalize() throws Throwable { method in class:FinalizeInflater.Wrapper
70 super.finalize();
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCFRetainedResource.java74 protected void finalize() throws Throwable { method in class:CFRetainedResource
/openjdk7/jdk/test/java/lang/ClassLoader/
H A DUninitializedParent.java44 protected void 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...]

Completed in 2566 milliseconds

123456