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 Group4 */5 package org.h2.tools.indexer;6 7 8 public class Page {9 int id;10 String fileName;11 String title;12 // TODO page.totalWeight is currently not used13 int totalWeight;14 int relations;15 16 Page(int id, String fileName) {17 this.id = id;18 this.fileName = fileName;19 }20 21 }22