Coverage Report - org.kuali.student.common.ui.client.widgets.KSTitleDescPanel
 
Classes in this File Line Coverage Branch Coverage Complexity
KSTitleDescPanel
0%
0/38
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.common.ui.client.widgets;
 17  
 
 18  
 import org.kuali.student.common.ui.client.widgets.layout.VerticalFlowPanel;
 19  
 
 20  
 import com.google.gwt.user.client.ui.Composite;
 21  
 
 22  
 public class KSTitleDescPanel extends Composite{
 23  0
         private VerticalFlowPanel layout = new VerticalFlowPanel();
 24  0
         private KSLabel title = new KSLabel();
 25  0
         private KSLabel desc = new KSLabel();
 26  
 
 27  0
         public KSTitleDescPanel(String title, String desc){
 28  0
                 this.title.setText(title);
 29  0
                 this.desc.setText(desc);
 30  0
                 this.title.setStyleName("KS-Common-Title");
 31  0
                 this.desc.setStyleName("KS-Common-Desc");
 32  0
                 layout.add(this.title);
 33  0
                 layout.add(this.desc);
 34  0
                 this.initWidget(layout);
 35  0
         }
 36  
         
 37  0
         public KSTitleDescPanel(String title){
 38  0
                 this.title.setText(title);
 39  0
                 this.title.setStyleName("KS-Common-Title");
 40  0
                 this.desc.setStyleName("KS-Common-Desc");
 41  0
                 layout.add(this.title);
 42  0
                 layout.add(this.desc);
 43  0
                 this.desc.setVisible(false);
 44  0
                 this.initWidget(layout);
 45  0
         }
 46  
         
 47  0
         public KSTitleDescPanel(){
 48  0
                 layout.add(this.title);
 49  0
                 layout.add(this.desc);
 50  0
                 this.title.setStyleName("KS-Common-Title");
 51  0
                 this.desc.setStyleName("KS-Common-Desc");
 52  0
                 this.desc.setVisible(false);
 53  0
                 this.title.setVisible(false);
 54  0
                 this.initWidget(layout);
 55  0
         }
 56  
         
 57  
         public void setTitleText(String title){
 58  0
                 this.title.setText(title);
 59  0
                 this.title.setVisible(true);
 60  0
         }
 61  
         
 62  
         public void setDesc(String desc){
 63  0
                 this.desc.setText(desc);
 64  0
                 this.desc.setVisible(true);
 65  0
         }
 66  
 
 67  
         public KSLabel getTitleWidget() {
 68  0
                 return title;
 69  
         }
 70  
         
 71  
         public KSLabel getDescWidget(){
 72  0
                 return desc;
 73  
         }
 74  
         
 75  
         
 76  
 }