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 weight of a token in a page.
10: */
11: public class Weight {
12: static final int TITLE = 10000, HEADER = 100, PARAGRAPH = 1;
13: Page page;
14: int value;
15: }
|