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.fulltext;6 7 public class IndexInfo {8 long id;9 String schemaName;10 String tableName;11 int[] keys;12 int[] indexColumns;13 String [] columnNames;14 }15