View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  
20  package org.apache.myfaces.tobago.internal.taglib.component;
21  
22  import org.apache.myfaces.tobago.apt.annotation.Tag;
23  import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
24  import org.apache.myfaces.tobago.apt.annotation.UIComponentTag;
25  import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
26  import org.apache.myfaces.tobago.component.RendererTypes;
27  import org.apache.myfaces.tobago.internal.taglib.declaration.HasIdBindingAndRendered;
28  import org.apache.myfaces.tobago.internal.taglib.declaration.HasLabel;
29  import org.apache.myfaces.tobago.internal.taglib.declaration.HasTip;
30  import org.apache.myfaces.tobago.internal.taglib.declaration.IsVisual;
31  import org.apache.myfaces.tobago.layout.VerticalAlign;
32  
33  import javax.faces.component.UIColumn;
34  
35  /**
36   * Renders a UIComponent that represents a single column of data within a
37   * parent UISheet component.
38   */
39  @Tag(name = "column")
40  @UIComponentTag(
41      uiComponent = "org.apache.myfaces.tobago.component.UIColumn",
42      uiComponentFacesClass = "javax.faces.component.UIColumn",
43      componentFamily = UIColumn.COMPONENT_FAMILY,
44      rendererType = RendererTypes.COLUMN,
45      interfaces = {
46          // As long as no behavior event names are defined, ClientBehaviorHolder must be implemented for Mojarra.
47          "javax.faces.component.behavior.ClientBehaviorHolder"
48      })
49  public interface ColumnTagDeclaration
50      extends HasIdBindingAndRendered, HasLabel, HasTip, IsVisual {
51    /**
52     * Horizontal alignment of this column.
53     * Possible values: left (default), right, center, justify
54     */
55    @TagAttribute
56    @UIComponentTagAttribute()
57    void setAlign(String align);
58  
59    /**
60     * Vertical alignment of this column.
61     * Possible values:
62     * {@link org.apache.myfaces.tobago.layout.VerticalAlign#top} (default),
63     * {@link org.apache.myfaces.tobago.layout.VerticalAlign#bottom},
64     * {@link org.apache.myfaces.tobago.layout.VerticalAlign#middle}
65     */
66    @TagAttribute
67    @UIComponentTagAttribute(
68        type = {"org.apache.myfaces.tobago.layout.VerticalAlign"},
69        allowedValues = {
70            VerticalAlign.TOP, VerticalAlign.BOTTOM, VerticalAlign.MIDDLE
71        })
72    void setVerticalAlign(String verticalAlign);
73  
74    /**
75     * Flag indicating whether or not this column is sortable.
76     * To make a column sortable the data of the sheet must be one of
77     * <code>java.util.List</code> or <code>Object[]</code>.
78     */
79    @TagAttribute
80    @UIComponentTagAttribute(type = {"boolean"}, defaultValue = "false")
81    void setSortable(String sortable);
82  
83    /**
84     * Flag indicating whether or not the width of this column in a sheet is resizable, by the user.
85     */
86    @TagAttribute
87    @UIComponentTagAttribute(type = {"boolean"}, defaultValue = "true")
88    void setResizable(String resizable);
89  
90    /**
91     * The layout token for this column.
92     * Allowd layout tokens ('*', '&lt;x>*', '&lt;x>px' or '&lt;x>%').
93     * Where '*' is equivalent to '1*'.
94     */
95  /* TBD
96    @TagAttribute
97    @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
98    void setWidth(String width);
99  */
100 }