EMMA Coverage Report (generated Sun Mar 01 22:06:14 CET 2015)
[all classes][org.h2.fulltext]

COVERAGE SUMMARY FOR SOURCE FILE [IndexInfo.java]

nameclass, %method, %block, %line, %
IndexInfo.java100% (1/1)100% (1/1)100% (3/3)100% (1/1)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class IndexInfo100% (1/1)100% (1/1)100% (3/3)100% (1/1)
IndexInfo (): void 100% (1/1)100% (3/3)100% (1/1)

1/*
2 * Copyright 2004-2014 H2 Group. Multiple-Licensed under the MPL 2.0,
3 * and the EPL 1.0 (http://h2database.com/html/license.html).
4 * Initial Developer: H2 Group
5 */
6package org.h2.fulltext;
7 
8/**
9 * The settings of one full text search index.
10 */
11public class IndexInfo {
12 
13    /**
14     * The index id.
15     */
16    protected int id;
17 
18    /**
19     * The schema name.
20     */
21    protected String schema;
22 
23    /**
24     * The table name.
25     */
26    protected String table;
27 
28    /**
29     * The column indexes of the key columns.
30     */
31    protected int[] keys;
32 
33    /**
34     * The column indexes of the index columns.
35     */
36    protected int[] indexColumns;
37 
38    /**
39     * The column names.
40     */
41    protected String[] columns;
42}

[all classes][org.h2.fulltext]
EMMA 2.0.5312 (C) Vladimir Roubtsov