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

COVERAGE SUMMARY FOR SOURCE FILE [PlanItem.java]

nameclass, %method, %block, %line, %
PlanItem.java100% (1/1)100% (7/7)100% (24/24)100% (10/10)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class PlanItem100% (1/1)100% (7/7)100% (24/24)100% (10/10)
PlanItem (): void 100% (1/1)100% (3/3)100% (1/1)
getIndex (): Index 100% (1/1)100% (3/3)100% (1/1)
getJoinPlan (): PlanItem 100% (1/1)100% (3/3)100% (1/1)
getNestedJoinPlan (): PlanItem 100% (1/1)100% (3/3)100% (1/1)
setIndex (Index): void 100% (1/1)100% (4/4)100% (2/2)
setJoinPlan (PlanItem): void 100% (1/1)100% (4/4)100% (2/2)
setNestedJoinPlan (PlanItem): void 100% (1/1)100% (4/4)100% (2/2)

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.table;
7 
8import org.h2.index.Index;
9 
10/**
11 * The plan item describes the index to be used, and the estimated cost when
12 * using it.
13 */
14public class PlanItem {
15 
16    /**
17     * The cost.
18     */
19    double cost;
20 
21    private Index index;
22    private PlanItem joinPlan;
23    private PlanItem nestedJoinPlan;
24 
25    void setIndex(Index index) {
26        this.index = index;
27    }
28 
29    public Index getIndex() {
30        return index;
31    }
32 
33    PlanItem getJoinPlan() {
34        return joinPlan;
35    }
36 
37    PlanItem getNestedJoinPlan() {
38        return nestedJoinPlan;
39    }
40 
41    void setJoinPlan(PlanItem joinPlan) {
42        this.joinPlan = joinPlan;
43    }
44 
45    void setNestedJoinPlan(PlanItem nestedJoinPlan) {
46        this.nestedJoinPlan = nestedJoinPlan;
47    }
48 
49}

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