Clover Coverage Report - Kuali Student 1.2-M6-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Sep 12 2011 05:03:53 EDT
../../../../../../../../../img/srcFileCovDistChart0.png 42% of files have more coverage
4   26   4   1
0   18   1   4
4     1  
1    
 
  Row       Line # 3 4 0% 4 8 0% 0.0
 
No Tests
 
1    package org.kuali.student.common.ui.client.widgets.table.scroll;
2   
 
3    public abstract class Row {
4    private boolean isSelected = false;
5    private boolean highlighted = false;
6   
 
7  0 toggle public boolean isSelected() {
8  0 return isSelected;
9    }
10   
 
11  0 toggle public void setSelected(boolean isSelected) {
12  0 this.isSelected = isSelected;
13    }
14   
15    public abstract Object getCellData(String columnId);
16    // abstract boolean isCellEditable(String columnId);
17    public abstract void setCellData(String columnId, Object newValue);
18   
 
19  0 toggle public boolean isHighlighted() {
20  0 return highlighted;
21    }
22   
 
23  0 toggle public void setHighlighted(boolean highlighted) {
24  0 this.highlighted = highlighted;
25    }
26    }