| 1 |  |  package org.kuali.student.common.ui.client.widgets; | 
  | 2 |  |   | 
  | 3 |  |  import com.google.gwt.user.client.ui.Composite; | 
  | 4 |  |  import com.google.gwt.user.client.ui.FlowPanel; | 
  | 5 |  |  import com.google.gwt.user.client.ui.HTMLPanel; | 
  | 6 |  |   | 
  | 7 |  |  public class KSFooter  extends Composite{ | 
  | 8 | 0 |     FlowPanel contentPanel = new FlowPanel(); | 
  | 9 | 0 |     KSLabel firstLinePanel = new KSLabel(); | 
  | 10 |  |     HTMLPanel secondLinePanel; | 
  | 11 | 0 |     public KSFooter(){ | 
  | 12 | 0 |          firstLinePanel.setText("Copyright 2005-2011 The Kuali Foundation.  All Rights Reserved."); | 
  | 13 | 0 |         secondLinePanel = new HTMLPanel("Portions of Kuali are copyrighted by other parties as described in the " + | 
  | 14 |  |                         "<a href='#/HOME/ACKNOWLEDGEMENTS'>Acknowledgements</a> screen."); | 
  | 15 | 0 |         contentPanel.add(firstLinePanel); | 
  | 16 | 0 |         contentPanel.add(secondLinePanel); | 
  | 17 | 0 |         contentPanel.setStyleName("KS-Footer"); | 
  | 18 | 0 |         firstLinePanel.setStyleName("KS-Footer-Line1"); | 
  | 19 | 0 |         secondLinePanel.setStyleName("KS-Footer-Line"); | 
  | 20 | 0 |         super.initWidget(contentPanel); | 
  | 21 | 0 |     } | 
  | 22 |  |  } |