View Javadoc

1   /**
2    * Copyright 2012 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   * Created by bobhurt on 9/20/12
16   */
17  package org.kuali.student.common.kitchensink.uif;
18  
19  import org.kuali.rice.krad.uif.widget.WidgetBase;
20  
21  import java.util.ArrayList;
22  import java.util.List;
23  
24  /**
25   * This class is for storing the various links for the KS Kitchen Sink examples
26   * See ksKitchenSinkFooterLinks.ftl
27   *
28   * @author Kuali Student Team
29   */
30  public class KitchenSinkFooterLinkSection extends WidgetBase {
31  
32      private String linkDelimiterEnd, linkDelimiterMiddle, linkDelimiterStart;
33      private List<KitchenSinkFooterLinkGroup> footerLinkGroups;
34  
35      public KitchenSinkFooterLinkSection() {
36          linkDelimiterStart = "[";
37          linkDelimiterMiddle = "|";
38          linkDelimiterEnd = "]";
39          footerLinkGroups = new ArrayList<KitchenSinkFooterLinkGroup>();
40      }
41  
42      public String getLinkDelimiterEnd() {
43          return linkDelimiterEnd;
44      }
45      public void setLinkDelimiterEnd(String linkDelimiterEnd) {
46          this.linkDelimiterEnd = linkDelimiterEnd;
47      }
48  
49      public String getLinkDelimiterMiddle() {
50          return linkDelimiterMiddle;
51      }
52      public void setLinkDelimiterMiddle(String linkDelimiterMiddle) {
53          this.linkDelimiterMiddle = linkDelimiterMiddle;
54      }
55  
56      public String getLinkDelimiterStart() {
57          return linkDelimiterStart;
58      }
59      public void setLinkDelimiterStart(String linkDelimiterStart) {
60          this.linkDelimiterStart = linkDelimiterStart;
61      }
62  
63      public List<KitchenSinkFooterLinkGroup> getFooterLinkGroups() {
64          return footerLinkGroups;
65      }
66      public void setFooterLinkGroups(List<KitchenSinkFooterLinkGroup> footerLinkGroups) {
67          this.footerLinkGroups = footerLinkGroups;
68      }
69  }