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.HasSize;
31  import org.apache.myfaces.tobago.internal.taglib.declaration.HasValue;
32  import org.apache.myfaces.tobago.internal.taglib.declaration.HasVar;
33  import org.apache.myfaces.tobago.internal.taglib.declaration.IsRequired;
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 data structure displayed as a set of list boxes.
41   */
42  @Tag(name = "treeListbox")
43  @BodyContentDescription(anyTagOf = "<tc:treeNode>")
44  @UIComponentTag(
45      uiComponent = "org.apache.myfaces.tobago.component.UITreeListbox",
46      uiComponentFacesClass = "javax.faces.component.UIData",
47      componentFamily = UIData.COMPONENT_FAMILY,
48      rendererType = RendererTypes.TREE_LISTBOX,
49      interfaces = {
50          // As long as no behavior event names are defined, ClientBehaviorHolder must be implemented for Mojarra.
51          "javax.faces.component.behavior.ClientBehaviorHolder"
52      },
53      allowedChildComponenents = {
54          "org.apache.myfaces.tobago.TreeNode"
55      })
56  public interface TreeListboxTagDeclaration
57      extends HasIdBindingAndRendered, HasValue, HasVar, IsVisual, IsRequired, HasSize {
58  
59    /**
60     * Flag indicating whether or not this component should be render selectable items.
61     * Possible values are:
62     * <ul>
63     * <li><strong>single</strong> : a single section tree is rendered</li>
64     * <li><strong>multiLeafOnly</strong> : a multi section tree is rendered,
65     * only Leaf's are selectable</li>
66     * <li><strong>singleLeafOnly</strong> : a single section tree is rendered,
67     * only Leaf's are selectable</li>
68     * </ul>
69     */
70    @TagAttribute
71    @UIComponentTagAttribute(
72        type = "org.apache.myfaces.tobago.model.Selectable",
73        defaultValue = Selectable.SINGLE,
74        allowedValues = {Selectable.SINGLE, Selectable.MULTI_LEAF_ONLY, Selectable.SINGLE_LEAF_ONLY},
75        defaultCode = "org.apache.myfaces.tobago.model.Selectable.single")
76    void setSelectable(String selectable);
77  
78    /**
79     * <strong>ValueBindingExpression</strong> pointing to a object to save the
80     * component's state.
81     */
82    @TagAttribute
83    @UIComponentTagAttribute(
84        type = "org.apache.myfaces.tobago.model.TreeState",
85        expression = DynamicExpression.VALUE_EXPRESSION_REQUIRED,
86        generate = false)
87    void setState(String state);
88  }