01: /*
02: * Created on 03-Mar-2006
03: *
04: * TODO To change the template for this generated file go to
05: * Window - Preferences - Java - Code Style - Code Templates
06: */
07: package com.jofti.store;
08:
09: import com.jofti.btree.IPage;
10: import com.jofti.core.IStoreKey;
11:
12: /**
13: * @author xenephon
14: *
15: * TODO To change the template for this generated type comment go to
16: * Window - Preferences - Java - Code Style - Code Templates
17: */
18: public class StoreWrapper {
19:
20: /**
21: *
22: */
23: public IStoreKey key = null;
24: public IPage page = null;
25:
26: /**
27: *
28: */
29: public StoreWrapper(IStoreKey key, IPage page) {
30: this.key = key;
31: this.page = page;
32: }
33:
34: }
|