1. /*
  2. * @(#)FinalReference.java 1.6 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.lang.ref;
  11. /* Final references, used to implement finalization */
  12. class FinalReference extends Reference {
  13. public FinalReference(Object referent, ReferenceQueue q) {
  14. super(referent, q);
  15. }
  16. }