Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3e48ccd48833116815ab17581fd7c7b91199543c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*******************************************************************************
 * Copyright (c) 2012 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.vcast.model;

import java.util.Collection;
import org.eclipse.osee.vcast.VCastDataStore;

/**
 * @author Roberto E. Escobar
 */
public class VCastBranchCoverageTable implements VCastTableData<VCastBranchCoverage> {

   @Override
   public String getName() {
      return "branch_coverage";
   }

   @Override
   public String[] getColumns() {
      return new String[] {
         "id",
         "function_id",
         "line",
         "num_conditions",
         "true_count",
         "false_count",
         "max_true_count",
         "max_false_count"};
   }

   @Override
   public Collection<VCastBranchCoverage> getRows(VCastDataStore dataStore)  {
      return dataStore.getAllBranchCoverages();
   }

   @Override
   public Object[] toRow(VCastBranchCoverage data) {
      Integer id = data.getId();
      Integer function_id = data.getFunctionId();
      Integer line = data.getLine();
      Integer num_conditions = data.getNumConditions();
      Integer true_count = data.getTrueCount();
      Integer false_count = data.getFalseCount();
      Integer max_true_count = data.getMaxTrueCount();
      Integer max_false_count = data.getMaxFalseCount();
      return new Object[] {
         id,
         function_id,
         line,
         num_conditions,
         true_count,
         false_count,
         max_true_count,
         max_false_count};
   }
}

Back to the top