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.DynamicExpression;
24  import org.apache.myfaces.tobago.apt.annotation.Tag;
25  import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
26  import org.apache.myfaces.tobago.apt.annotation.UIComponentTag;
27  import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
28  import org.apache.myfaces.tobago.component.RendererTypes;
29  import org.apache.myfaces.tobago.internal.taglib.declaration.HasIdBindingAndRendered;
30  import org.apache.myfaces.tobago.internal.taglib.declaration.HasValue;
31  import org.apache.myfaces.tobago.internal.taglib.declaration.HasVar;
32  import org.apache.myfaces.tobago.internal.taglib.declaration.IsShowRoot;
33  import org.apache.myfaces.tobago.internal.taglib.declaration.IsShowRootJunction;
34  import org.apache.myfaces.tobago.internal.taglib.declaration.IsVisual;
35  import org.apache.myfaces.tobago.model.Selectable;
36  
37  import javax.faces.component.UIData;
38  
39  /**
40   * A tree with classical look.
41   * Usually used with icons and junction lines to open folder, etc.
42   */
43  @Tag(name = "tree")
44  @BodyContentDescription(anyTagOf = "<tc:treeNode>")
45  @UIComponentTag(
46      uiComponent = "org.apache.myfaces.tobago.component.UITree",
47      uiComponentFacesClass = "javax.faces.component.UIData",
48      componentFamily = UIData.COMPONENT_FAMILY,
49      rendererType = RendererTypes.TREE,
50      interfaces = {
51          // As long as no behavior event names are defined, ClientBehaviorHolder must be implemented for Mojarra.
52          "javax.faces.component.behavior.ClientBehaviorHolder"
53      },
54      allowedChildComponenents = {
55          "org.apache.myfaces.tobago.TreeNode"
56          })
57  public interface TreeTagDeclaration
58      extends HasIdBindingAndRendered, HasValue, HasVar, IsVisual,
59      IsShowRoot, IsShowRootJunction {
60  
61    /**
62     * Flag indicating whether or not this component should be render selectable items.
63     * Possible values are:
64     * <ul>
65     * <li><strong>none</strong> : not selectable</li>
66     * <li><strong>multi</strong> : a multi section tree is rendered</li>
67     * <li><strong>single</strong> : a single section tree is rendered</li>
68     * <li><strong>multiLeafOnly</strong> : a multi section tree is rendered,
69     * only leaf's are selectable</li>
70     * <li><strong>singleLeafOnly</strong> : a single section tree is rendered,
71     * only leaf's are selectable</li>
72     * </ul>
73     */
74    @TagAttribute
75    @UIComponentTagAttribute(
76        type = "org.apache.myfaces.tobago.model.Selectable",
77        defaultValue = Selectable.MULTI,
78        allowedValues = {
79            Selectable.NONE,
80            Selectable.MULTI,
81            Selectable.SINGLE,
82            Selectable.MULTI_LEAF_ONLY,
83            Selectable.SINGLE_LEAF_ONLY},
84        defaultCode = "org.apache.myfaces.tobago.model.Selectable.multi")
85    void setSelectable(String selectable);
86  
87    /**
88     * <strong>ValueBindingExpression</strong> pointing to a object to save the
89     * component's state.
90     */
91    @TagAttribute
92    @UIComponentTagAttribute(
93        type = "org.apache.myfaces.tobago.model.TreeState",
94        expression = DynamicExpression.VALUE_EXPRESSION_REQUIRED,
95        generate = false)
96    void setState(String state);
97  }