/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1997, 1998 * Sleepycat Software. All rights reserved. * * @(#)DbLock.java 10.3 (Sleepycat) 10/18/98 */ package com.sleepycat.db; /** * * @author Donald D. Anderson */ public class DbLock { protected native void finalize() throws Throwable; // methods // public native void put(DbLockTab locktab) throws DbException; // get/set methods // // private data // private long private_info_ = 0; static { Db.load_db(); } } // end of DbLock.java