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
5   17   1   5
0   15   0.2   1
1     1  
1    
 
  LoadingDiv       Line # 8 5 0% 1 6 0% 0.0
 
No Tests
 
1    package org.kuali.student.common.ui.client.widgets.notification;
2   
3    import com.google.gwt.user.client.ui.HorizontalPanel;
4    import com.google.gwt.user.client.ui.Image;
5    import com.google.gwt.user.client.ui.Label;
6    import com.google.gwt.user.client.ui.PopupPanel;
7   
 
8    public class LoadingDiv extends PopupPanel{
9    HorizontalPanel panel = new HorizontalPanel();
 
10  0 toggle public LoadingDiv(){
11  0 Image Image = new Image("images/common/twiddler3.gif");
12  0 panel.add(Image);
13  0 panel.add(new Label("Loading..."));
14  0 this.setWidget(panel);
15  0 this.getElement().setAttribute("style", "z-index: 5; border: 1px solid grey;");
16    }
17    }