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.BodyContentDescription;
23  import org.apache.myfaces.tobago.apt.annotation.Tag;
24  import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
25  import org.apache.myfaces.tobago.apt.annotation.UIComponentTag;
26  import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
27  import org.apache.myfaces.tobago.component.RendererTypes;
28  import org.apache.myfaces.tobago.internal.taglib.declaration.HasIdBindingAndRendered;
29  import org.apache.myfaces.tobago.internal.taglib.declaration.HasLabel;
30  import org.apache.myfaces.tobago.internal.taglib.declaration.HasTip;
31  import org.apache.myfaces.tobago.internal.taglib.declaration.IsDisabled;
32  import org.apache.myfaces.tobago.internal.taglib.declaration.IsVisual;
33  
34  import javax.faces.component.UIColumn;
35  
36  /**
37   * Creates a tree node inside of a sheet (also known as tree table).
38   * This component represents a single node inside a tree structure.
39   */
40  @SuppressWarnings("ALL")
41  @Tag(name = "columnNode")
42  @BodyContentDescription(anyTagOf = "<tc:treeIndent>|<tc:treeIcon>|<tc:treeSelect>|<tc:treeLabel>|<tc:link>")
43  @UIComponentTag(
44      uiComponent = "org.apache.myfaces.tobago.component.UIColumnNode",
45      uiComponentFacesClass = "javax.faces.component.UIColumn",
46      componentFamily = UIColumn.COMPONENT_FAMILY,
47      rendererType = RendererTypes.TREE_NODE,
48      interfaces = {
49          // As long as no behavior event names are defined, ClientBehaviorHolder must be implemented for Mojarra.
50          "javax.faces.component.behavior.ClientBehaviorHolder"
51      },
52      allowedChildComponenents = {
53          "org.apache.myfaces.tobago.TreeIndent",
54          "org.apache.myfaces.tobago.TreeIcon",
55          "org.apache.myfaces.tobago.TreeSelect",
56          "org.apache.myfaces.tobago.TreeLabel",
57          "org.apache.myfaces.tobago.Link"
58      })
59  public interface ColumnNodeTagDeclaration
60      extends HasIdBindingAndRendered, HasTip, IsDisabled, IsVisual, HasLabel {
61  
62    /**
63     * Flag indicating whether or not the width of this column in a sheet is resizable, by the user.
64     */
65    @TagAttribute
66    @UIComponentTagAttribute(type = {"boolean"}, defaultValue = "true")
67    void setResizable(String resizable);
68  }