View Javadoc
1   // ---------- Attention: Generated code, please do not modify! -----------
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one or more
5    * contributor license agreements.  See the NOTICE file distributed with
6    * this work for additional information regarding copyright ownership.
7    * The ASF licenses this file to You under the Apache License, Version 2.0
8    * (the "License"); you may not use this file except in compliance with
9    * the License.  You may obtain a copy of the License at
10   *
11   *      http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing, software
14   * distributed under the License is distributed on an "AS IS" BASIS,
15   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   * See the License for the specific language governing permissions and
17   * limitations under the License.
18   */
19  
20  package org.apache.myfaces.tobago.component;
21  
22  import javax.faces.context.FacesContext;
23  import org.apache.myfaces.tobago.context.Markup;
24  import org.apache.myfaces.tobago.internal.component.AbstractUISelectItem;
25  import org.apache.myfaces.tobago.renderkit.css.CustomClass;
26  import org.apache.myfaces.tobago.internal.util.ArrayUtils;
27  import org.apache.myfaces.tobago.internal.util.StringUtils;
28  import org.apache.myfaces.tobago.internal.util.Deprecation;
29  import org.apache.myfaces.tobago.component.Tags;
30  import javax.annotation.Generated;
31  import javax.el.ELException;
32  import javax.faces.FacesException;
33  import java.util.Arrays;
34  import java.util.ArrayList;
35  import java.util.Collection;
36  import java.util.List;
37  import javax.el.MethodExpression;
38  import javax.el.ValueExpression;
39  
40  /**
41   Add a child UISelectItem component to the UIComponent
42    associated with the closed parent UIComponent custom
43    action.
44    * UIComponent class, generated from template {@code component.stg} with class
45    * {@link org.apache.myfaces.tobago.internal.taglib.component.SelectItemTagDeclaration}.
46   */
47  @Generated("component.stg")
48  public class UISelectItem
49      extends AbstractUISelectItem  {
50  
51    public static final String COMPONENT_TYPE = Tags.selectItem.componentType();
52  
53    public static final String COMPONENT_FAMILY = "";
54  
55  
56    enum PropertyKeys {
57      markup,
58      customClass,
59      tip,
60      itemImage,
61    }
62  
63    public String getFamily() {
64      return COMPONENT_FAMILY;
65    }
66  
67  
68    public org.apache.myfaces.tobago.context.Markup getMarkup() {
69      Object object = getStateHelper().eval(PropertyKeys.markup);
70      if (object != null) {
71        return Markup.valueOf(object);
72      }
73      return null;
74    }
75  
76    public void setMarkup(org.apache.myfaces.tobago.context.Markup markup) {
77      getStateHelper().put(PropertyKeys.markup, markup);
78    }
79  
80    /**
81    Sets a CSS class in its parent, if the parent supports it.
82  
83     Which this feature it is possible to put a CSS class name into a component with the <tc:style> tag. Example:
84  
85     <pre>
86     &lt;tc:in&gt;
87       &lt;tc:style customClass="my-emphasized"/&gt;
88     &lt;/tc:in&gt;
89     </pre>
90  
91     One capability is, to used external CSS libs.
92     <br>
93     This feature should not be used imprudent.
94     Because it might be unstable against changes in the renderered HTML code.
95  
96    */
97    public org.apache.myfaces.tobago.renderkit.css.CustomClass getCustomClass() {
98      return (org.apache.myfaces.tobago.renderkit.css.CustomClass) getStateHelper().eval(PropertyKeys.customClass);
99    }
100 
101   public void setCustomClass(org.apache.myfaces.tobago.renderkit.css.CustomClass customClass) {
102     getStateHelper().put(PropertyKeys.customClass, customClass);
103   }
104 
105   /**
106   Text value to display as tooltip.
107 
108   */
109   public java.lang.String getTip() {
110     return (java.lang.String) getStateHelper().eval(PropertyKeys.tip);
111   }
112 
113   public void setTip(java.lang.String tip) {
114     getStateHelper().put(PropertyKeys.tip, tip);
115   }
116 
117   /**
118   Image to be displayed to the user for this option.
119 
120   */
121   public java.lang.String getItemImage() {
122     return (java.lang.String) getStateHelper().eval(PropertyKeys.itemImage);
123   }
124 
125   public void setItemImage(java.lang.String itemImage) {
126     getStateHelper().put(PropertyKeys.itemImage, itemImage);
127   }
128 
129 
130   @Override
131   public void restoreState(FacesContext context, Object state) {
132     // FIXME HACK for mojarra SystemEventListener state restoring bug
133     pushComponentToEL(context, this);
134     super.restoreState(context, state);
135     popComponentFromEL(context);
136   }
137 
138 }