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.component.behavior.ClientBehaviorHolder;
23  import javax.faces.context.FacesContext;
24  import org.apache.myfaces.tobago.context.Markup;
25  import org.apache.myfaces.tobago.internal.component.AbstractUIButtons;
26  import org.apache.myfaces.tobago.layout.Orientation;
27  import org.apache.myfaces.tobago.renderkit.css.CustomClass;
28  import org.apache.myfaces.tobago.internal.util.ArrayUtils;
29  import org.apache.myfaces.tobago.internal.util.StringUtils;
30  import org.apache.myfaces.tobago.internal.util.Deprecation;
31  import org.apache.myfaces.tobago.component.Tags;
32  import javax.annotation.Generated;
33  import javax.el.ELException;
34  import javax.faces.FacesException;
35  import java.util.Arrays;
36  import java.util.ArrayList;
37  import java.util.Collection;
38  import java.util.List;
39  import javax.el.MethodExpression;
40  import javax.el.ValueExpression;
41  
42  /**
43   Renders a group of buttons.
44    * UIComponent class, generated from template {@code component.stg} with class
45    * {@link org.apache.myfaces.tobago.internal.taglib.component.ButtonsTagDeclaration}.
46   */
47  @Generated("component.stg")
48  public class UIButtons
49      extends AbstractUIButtons implements ClientBehaviorHolder {
50  
51    public static final String COMPONENT_TYPE = Tags.buttons.componentType();
52  
53    public static final String COMPONENT_FAMILY = "javax.faces.Panel";
54  
55  
56    enum PropertyKeys {
57      orientation,
58      markup,
59      customClass,
60      tip,
61      disabled,
62    }
63  
64    public String getFamily() {
65      return COMPONENT_FAMILY;
66    }
67  
68  
69    /**
70    Set the orientation of the component.
71     Allowed values: horizontal, vertical
72    <br>Allowed Values: <code>horizontal,vertical</code>
73    */
74    public org.apache.myfaces.tobago.layout.Orientation getOrientation() {
75      return (org.apache.myfaces.tobago.layout.Orientation) getStateHelper().eval(PropertyKeys.orientation);
76    }
77  
78    public void setOrientation(org.apache.myfaces.tobago.layout.Orientation orientation) {
79      getStateHelper().put(PropertyKeys.orientation, orientation);
80    }
81  
82    public org.apache.myfaces.tobago.context.Markup getMarkup() {
83      Object object = getStateHelper().eval(PropertyKeys.markup);
84      if (object != null) {
85        return Markup.valueOf(object);
86      }
87      return null;
88    }
89  
90    public void setMarkup(org.apache.myfaces.tobago.context.Markup markup) {
91      getStateHelper().put(PropertyKeys.markup, markup);
92    }
93  
94    /**
95    Sets a CSS class in its parent, if the parent supports it.
96  
97     Which this feature it is possible to put a CSS class name into a component with the &lt;tc:style&gt; tag. Example:
98  
99     <pre>
100    &lt;tc:in&gt;
101      &lt;tc:style customClass="my-emphasized"/&gt;
102    &lt;/tc:in&gt;
103    </pre>
104 
105    One capability is, to used external CSS libs.
106    <br>
107    This feature should not be used imprudent.
108    Because it might be unstable against changes in the renderered HTML code.
109 
110   */
111   public org.apache.myfaces.tobago.renderkit.css.CustomClass getCustomClass() {
112     return (org.apache.myfaces.tobago.renderkit.css.CustomClass) getStateHelper().eval(PropertyKeys.customClass);
113   }
114 
115   public void setCustomClass(org.apache.myfaces.tobago.renderkit.css.CustomClass customClass) {
116     getStateHelper().put(PropertyKeys.customClass, customClass);
117   }
118 
119   /**
120   Text value to display as tooltip.
121 
122   */
123   public java.lang.String getTip() {
124     return (java.lang.String) getStateHelper().eval(PropertyKeys.tip);
125   }
126 
127   public void setTip(java.lang.String tip) {
128     getStateHelper().put(PropertyKeys.tip, tip);
129   }
130 
131   /**
132   Flag indicating that this element and all children are disabled.
133 
134   */
135   public boolean isDisabled() {
136     Boolean bool = (Boolean) getStateHelper().eval(PropertyKeys.disabled);
137     if (bool != null) {
138       return bool;
139     }
140     return false;
141   }
142 
143   public void setDisabled(boolean disabled) {
144     getStateHelper().put(PropertyKeys.disabled, disabled);
145   }
146 
147 
148   @Override
149   public void restoreState(FacesContext context, Object state) {
150     // FIXME HACK for mojarra SystemEventListener state restoring bug
151     pushComponentToEL(context, this);
152     super.restoreState(context, state);
153     popComponentFromEL(context);
154   }
155 
156 }