01: /*
02: * Created on 06-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: /**
10: * @author xenephon
11: *
12: * TODO To change the template for this generated type comment go to
13: * Window - Preferences - Java - Code Style - Code Templates
14: */
15: public class FilePositionHolder {
16:
17: int file;
18: long position;
19:
20: /**
21: *
22: */
23: public FilePositionHolder(int file, long position) {
24: this .file = file;
25: this .position = position;
26: // TODO Auto-generated constructor stub
27: }
28:
29: }
|