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.AbstractUIRow;
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   This component creates a representative in a UISheet for each row.
42    The tag must be a subtag of <tc:sheet>
43    * UIComponent class, generated from template {@code component.stg} with class
44    * {@link org.apache.myfaces.tobago.internal.taglib.component.RowTagDeclaration}.
45   */
46  @Generated("component.stg")
47  public class UIRow
48      extends AbstractUIRow  {
49  
50    public static final String COMPONENT_TYPE = Tags.row.componentType();
51  
52    public static final String COMPONENT_FAMILY = "javax.faces.Column";
53  
54    private static final Collection<String> EVENT_NAMES = Arrays.asList("click", "dblclick");
55  
56    @Override
57    public Collection<String> getEventNames() {
58      return EVENT_NAMES;
59    }
60  
61    @Override
62    public String getDefaultEventName() {
63      return "click";
64    }
65  
66  
67    enum PropertyKeys {
68      markup,
69      customClass,
70    }
71  
72    public String getFamily() {
73      return COMPONENT_FAMILY;
74    }
75  
76  
77    public org.apache.myfaces.tobago.context.Markup getMarkup() {
78      Object object = getStateHelper().eval(PropertyKeys.markup);
79      if (object != null) {
80        return Markup.valueOf(object);
81      }
82      return null;
83    }
84  
85    public void setMarkup(org.apache.myfaces.tobago.context.Markup markup) {
86      getStateHelper().put(PropertyKeys.markup, markup);
87    }
88  
89    /**
90    Sets a CSS class in its parent, if the parent supports it.
91  
92     Which this feature it is possible to put a CSS class name into a component with the &lt;tc:style&gt; tag. Example:
93  
94     <pre>
95     &lt;tc:in&gt;
96       &lt;tc:style customClass="my-emphasized"/&gt;
97     &lt;/tc:in&gt;
98     </pre>
99  
100    One capability is, to used external CSS libs.
101    <br>
102    This feature should not be used imprudent.
103    Because it might be unstable against changes in the renderered HTML code.
104 
105   */
106   public org.apache.myfaces.tobago.renderkit.css.CustomClass getCustomClass() {
107     return (org.apache.myfaces.tobago.renderkit.css.CustomClass) getStateHelper().eval(PropertyKeys.customClass);
108   }
109 
110   public void setCustomClass(org.apache.myfaces.tobago.renderkit.css.CustomClass customClass) {
111     getStateHelper().put(PropertyKeys.customClass, customClass);
112   }
113 
114 
115   @Override
116   public void restoreState(FacesContext context, Object state) {
117     // FIXME HACK for mojarra SystemEventListener state restoring bug
118     pushComponentToEL(context, this);
119     super.restoreState(context, state);
120     popComponentFromEL(context);
121   }
122 
123 }