1 /* 2 * See the file LICENSE for redistribution information. 3 * 4 * Copyright (c) 2002,2006 Oracle. All rights reserved. 5 * 6 * $Id: BINBoundary.java,v 1.5 2006/10/30 21:14:25 bostic Exp $: 7 */ 8 9 package com.sleepycat.je.tree; 10 11 /** 12 * Contains information about the BIN returned by a search. 13 */ 14 public class BINBoundary { 15 /** The last BIN was returned. */ 16 public boolean isLastBin; 17 /** The first BIN was returned. */ 18 public boolean isFirstBin; 19 } 20