View Javadoc
1   /**
2    * Copyright 2005-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.krad.uif.element;
17  
18  import org.kuali.rice.krad.datadictionary.parse.BeanTagAttribute;
19  import org.kuali.rice.krad.datadictionary.parse.BeanTag;
20  import org.kuali.rice.krad.datadictionary.parse.BeanTags;
21  
22  import org.kuali.rice.krad.datadictionary.validator.ValidationTrace;
23  import org.kuali.rice.krad.datadictionary.validator.Validator;
24  
25  
26  
27  
28  /**
29   * Element that presents an Icon
30   *
31   * @author Kuali Rice Team (rice.collab@kuali.org)
32   */
33  @BeanTags({@BeanTag(name = "icon-bean", parent = "Uif-Icon")})
34  public class Icon extends ContentElementBase {
35  
36      private static final long serialVersionUID = 6771810101056598912L;
37  
38      private String iconClass;
39  
40      public Icon() {
41          super();
42      }
43  
44      /**
45       * Icon Class for the action
46       *
47       * <p>
48       * Bootstrap Icon Class to be rendered on this Action
49       * </p>
50       *
51       * @return label for action
52       */
53      @BeanTagAttribute(name = "iconClass")
54      public String getIconClass() {
55          return iconClass;
56      }
57  
58      /**
59       * Setter for the Icon Class
60       *
61       * @param iconClass
62       */
63      public void setIconClass(String iconClass) {
64          this.iconClass = iconClass;
65      }
66  
67      /**
68       * {@inheritDoc}
69       */
70      @Override
71      public void completeValidation(ValidationTrace tracer){
72          tracer.addBean(this);
73  
74          // Checks that a source is set
75          if(getIconClass()==null){
76              if(!Validator.checkExpressions(this, "iconClass")){
77                  String currentValues [] = {"iconClass ="+getIconClass()};
78                  tracer.createError("iconClass must be set",currentValues);
79              }
80          }
81  
82          super.completeValidation(tracer.getCopy());
83      }
84  }