01: /*
02: * Copyright 2004-2008 H2 Group. Licensed under the H2 License, Version 1.0
03: * (http://h2database.com/html/license.html).
04: * Initial Developer: H2 Group
05: */
06: package org.h2.fulltext;
07:
08: /**
09: * The settings of one full text search index.
10: */
11: public class IndexInfo {
12: int id;
13: String schemaName;
14: String tableName;
15: int[] keys;
16: int[] indexColumns;
17: String[] columnNames;
18: }
|