01: /*
02: * Copyright (C) <2005> <Steve Woodcock>
03: *
04:
05: * Created on 09 May 2003, 15:13
06: */
07:
08: package com.jofti.btree;
09:
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 entries = null;
22: }
|