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.component.AbstractUIFlowLayout;
28  import org.apache.myfaces.tobago.internal.taglib.declaration.HasIdBindingAndRendered;
29  import org.apache.myfaces.tobago.internal.taglib.declaration.IsVisual;
30  import org.apache.myfaces.tobago.layout.TextAlign;
31  
32  /**
33   * Renders a FlowLayout that positions the content components in there natural order.
34   */
35  @Tag(name = "flowLayout")
36  @UIComponentTag(
37      uiComponent = "org.apache.myfaces.tobago.component.UIFlowLayout",
38      componentFamily = AbstractUIFlowLayout.COMPONENT_FAMILY,
39      rendererType = RendererTypes.FLOW_LAYOUT,
40      interfaces = {
41          // As long as no behavior event names are defined, ClientBehaviorHolder must be implemented for Mojarra.
42          "javax.faces.component.behavior.ClientBehaviorHolder"
43      },
44      allowedChildComponenents = "NONE")
45  public interface FlowLayoutTagDeclaration
46      extends HasIdBindingAndRendered, IsVisual {
47  
48    /**
49     * The alignment of the elements inside of the container, possible values are:
50     * {@link TextAlign#left},
51     * {@link TextAlign#right},
52     * {@link TextAlign#center} and
53     * {@link TextAlign#justify}.
54     *
55     * @since 3.0.0
56     */
57    @TagAttribute
58    @UIComponentTagAttribute(
59        type = {"org.apache.myfaces.tobago.layout.TextAlign"},
60        allowedValues = {
61            TextAlign.LEFT, TextAlign.RIGHT, TextAlign.CENTER, TextAlign.JUSTIFY
62        })
63    void setTextAlign(String textAlign);
64  
65  }