KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * Created on 06-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 /**
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     public FilePositionHolder(int file, long position) {
23         this.file = file;
24         this.position = position;
25         // TODO Auto-generated constructor stub
26
}
27
28 }
29
Popular Tags