1 8 9 package com.sleepycat.je.dbi; 10 import com.sleepycat.je.DatabaseException; 11 import com.sleepycat.je.tree.BIN; 12 import com.sleepycat.je.txn.Locker; 13 14 18 public class NullCursor extends CursorImpl { 19 22 public NullCursor(DatabaseImpl database, Locker txn) 23 throws DatabaseException { 24 25 super(database, txn); 26 } 27 28 public void addCursor(BIN bin) {} 29 public void addCursor() {} 30 } 31 32 | Popular Tags |