001package org.kuali.student.common.ui.client.widgets; 002 003import com.google.gwt.user.client.ui.Composite; 004import com.google.gwt.user.client.ui.FlowPanel; 005import com.google.gwt.user.client.ui.HTMLPanel; 006 007public class KSFooter extends Composite{ 008 FlowPanel contentPanel = new FlowPanel(); 009 KSLabel firstLinePanel = new KSLabel(); 010 HTMLPanel secondLinePanel; 011 public KSFooter(){ 012 firstLinePanel.setText("Copyright 2005-2011 The Kuali Foundation. All Rights Reserved."); 013 secondLinePanel = new HTMLPanel("Portions of Kuali are copyrighted by other parties as described in the " + 014 "<a href='#/HOME/ACKNOWLEDGEMENTS'>Acknowledgements</a> screen."); 015 contentPanel.add(firstLinePanel); 016 contentPanel.add(secondLinePanel); 017 contentPanel.setStyleName("KS-Footer"); 018 firstLinePanel.setStyleName("KS-Footer-Line1"); 019 secondLinePanel.setStyleName("KS-Footer-Line"); 020 super.initWidget(contentPanel); 021 } 022}