01: /*
02: * Copyright 2004-2008 H2 Group. Licensed under the H2 License, Version 1.0
03: * (license2)
04: * Initial Developer: H2 Group
05: */
06: package org.h2.tools.indexer;
07:
08: /**
09: * Represents a page of the indexer.
10: */
11: public class Page {
12: int id;
13: String fileName;
14: String title;
15: // TODO page.totalWeight is currently not used
16: int totalWeight;
17: int relations;
18:
19: Page(int id, String fileName) {
20: this.id = id;
21: this.fileName = fileName;
22: }
23:
24: }
|