KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > h2 > tools > indexer > Page


1 /*
2  * Copyright 2004-2006 H2 Group. Licensed under the H2 License, Version 1.0 (http://h2database.com/html/license.html).
3  * Initial Developer: H2 Group
4  */

5 package org.h2.tools.indexer;
6
7
8 public class Page {
9     int id;
10     String JavaDoc fileName;
11     String JavaDoc title;
12     // TODO page.totalWeight is currently not used
13
int totalWeight;
14     int relations;
15     
16     Page(int id, String JavaDoc fileName) {
17         this.id = id;
18         this.fileName = fileName;
19     }
20
21 }
22
Popular Tags