/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This source file is part of SableVM classlib-stubs. * * * * See the file "LICENSE" for the copyright information and for * * the terms and conditions for copying, distribution and * * modification of this source file. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package java.lang.ref; import org.sablevm.annotations.ImplementedInVM; public abstract class Reference extends Object { @ImplementedInVM native public T get(); @ImplementedInVM native public void clear(); @ImplementedInVM native public boolean isEnqueued(); @ImplementedInVM native public boolean enqueue(); }