1 /*- 2 * See the file LICENSE for redistribution information. 3 * 4 * Copyright (c) 2002,2006 Oracle. All rights reserved. 5 * 6 * $Id: DbTestProxy.java,v 1.11 2006/10/30 21:14:41 bostic Exp $ 7 */ 8 9 package com.sleepycat.je; 10 11 import com.sleepycat.je.dbi.CursorImpl; 12 13 /** 14 * DbTestProxy is for internal use only. It serves to shelter methods that must 15 * be public to be used by JE unit tests that but are not part of the 16 * public api available to applications. 17 */ 18 public class DbTestProxy { 19 /** 20 * Proxy to Cursor.getCursorImpl 21 */ 22 public static CursorImpl dbcGetCursorImpl(Cursor dbc) { 23 return dbc.getCursorImpl(); 24 } 25 } 26 27