KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jofti > btree > EntrySplitWrapper


1 /*
2   * Copyright (C) <2005> <Steve Woodcock>
3  *
4
5  * Created on 09 May 2003, 15:13
6  */

7
8 package com.jofti.btree;
9
10 /**
11  * <p>
12  * A convenience wrapper used in the split operation to return the objects the split node is divided into.
13  * </p>
14  *
15  * @author steve
16  * @version 1.3
17  */

18 public class EntrySplitWrapper {
19
20     public int size =0;
21     public Object JavaDoc entries =null;
22 }
23
Popular Tags