KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jofti > store > StoreWrapper


1 /*
2  * Created on 03-Mar-2006
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package com.jofti.store;
8
9 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 }
35
Popular Tags