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 FlowPanel contentPanel = new FlowPanel();
9 KSLabel firstLinePanel = new KSLabel();
10 HTMLPanel secondLinePanel;
11 public KSFooter(){
12 firstLinePanel.setText("Copyright 2005-2010 The Kuali Foundation. All Rights Reserved.");
13 secondLinePanel = new HTMLPanel("Portions of Kuali are copyrighted by other parties as described in the " +
14 "<a href='#/HOME/ACKNOWLEDGEMENTS'>Acknowledgements</a> screen.");
15 contentPanel.add(firstLinePanel);
16 contentPanel.add(secondLinePanel);
17 contentPanel.setStyleName("KS-Footer");
18 firstLinePanel.setStyleName("KS-Footer-Line1");
19 secondLinePanel.setStyleName("KS-Footer-Line");
20 super.initWidget(contentPanel);
21 }
22 }