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.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. This component represents a single node inside a tree structure.
38   */
39  @SuppressWarnings("ALL")
40  @Tag(name = "treeNode")
41  @BodyContentDescription(anyTagOf = "<tc:treeIndent>|<tc:treeIcon>|<tc:treeSelect>|<tc:treeLabel>|<tc:link>")
42  @UIComponentTag(
43      uiComponent = "org.apache.myfaces.tobago.component.UITreeNode",
44      uiComponentFacesClass = "javax.faces.component.UIColumn",
45      componentFamily = UIColumn.COMPONENT_FAMILY,
46      rendererType = RendererTypes.TREE_NODE,
47      allowedChildComponenents = {
48          "org.apache.myfaces.tobago.TreeNode"
49      })
50  public interface TreeNodeTagDeclaration
51      extends HasIdBindingAndRendered, HasTip, IsDisabled, IsVisual {
52  
53    /**
54     * @deprecated since 2.0.0
55     */
56    @Deprecated
57    @TagAttribute()
58    @UIComponentTagAttribute(type = "boolean", generate = false, defaultValue = "false")
59    void setSelected(String selected);
60  
61    /**
62     * Method binding representing a expansionListener method that ....
63     */
64    @TagAttribute
65    @UIComponentTagAttribute(type = {},
66        generate = false,
67        expression = DynamicExpression.METHOD_EXPRESSION_REQUIRED,
68        methodSignature = "org.apache.myfaces.tobago.event.TreeExpansionEvent")
69    void setTreeExpansionListener(String treeExpansionListener);
70  
71  /* TBD
72    @TagAttribute
73    @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
74    void setWidth(String width);
75  */
76  }