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.Behavior;
23  import org.apache.myfaces.tobago.apt.annotation.BodyContentDescription;
24  import org.apache.myfaces.tobago.apt.annotation.Facet;
25  import org.apache.myfaces.tobago.apt.annotation.Tag;
26  import org.apache.myfaces.tobago.apt.annotation.UIComponentTag;
27  import org.apache.myfaces.tobago.component.ClientBehaviors;
28  import org.apache.myfaces.tobago.component.Facets;
29  import org.apache.myfaces.tobago.component.RendererTypes;
30  import org.apache.myfaces.tobago.internal.taglib.declaration.HasAccessKey;
31  import org.apache.myfaces.tobago.internal.taglib.declaration.HasAction;
32  import org.apache.myfaces.tobago.internal.taglib.declaration.HasActionListener;
33  import org.apache.myfaces.tobago.internal.taglib.declaration.HasConfirmation;
34  import org.apache.myfaces.tobago.internal.taglib.declaration.HasFragment;
35  import org.apache.myfaces.tobago.internal.taglib.declaration.HasIdBindingAndRendered;
36  import org.apache.myfaces.tobago.internal.taglib.declaration.HasLabel;
37  import org.apache.myfaces.tobago.internal.taglib.declaration.HasLink;
38  import org.apache.myfaces.tobago.internal.taglib.declaration.HasOutcome;
39  import org.apache.myfaces.tobago.internal.taglib.declaration.HasTabIndex;
40  import org.apache.myfaces.tobago.internal.taglib.declaration.HasTarget;
41  import org.apache.myfaces.tobago.internal.taglib.declaration.HasTip;
42  import org.apache.myfaces.tobago.internal.taglib.declaration.IsDisabledBySecurity;
43  import org.apache.myfaces.tobago.internal.taglib.declaration.IsImmediateCommand;
44  import org.apache.myfaces.tobago.internal.taglib.declaration.IsOmit;
45  import org.apache.myfaces.tobago.internal.taglib.declaration.IsTransition;
46  import org.apache.myfaces.tobago.internal.taglib.declaration.IsVisual;
47  
48  import javax.faces.component.UICommand;
49  
50  /**
51   * Renders a command inside of a tree.
52   *
53   * @deprecated since 4.0.0, please use tc:link
54   */
55  @Deprecated
56  @Tag(name = "treeCommand")
57  @BodyContentDescription(anyTagOf = "facestag")
58  @UIComponentTag(
59      uiComponent = "org.apache.myfaces.tobago.component.UITreeCommand",
60      uiComponentFacesClass = "javax.faces.component.UICommand",
61      interfaces = {
62          "org.apache.myfaces.tobago.component.SupportsAccessKey"
63      },
64      componentFamily = UICommand.COMPONENT_FAMILY,
65      allowedChildComponenents = "NONE",
66      facets = {
67          @Facet(
68              name = Facets.CONFIRMATION,
69              description = "Contains a UIOutput instance with the confirmation message.",
70              allowedChildComponenents = "org.apache.myfaces.tobago.Out")},
71      behaviors = {
72          @Behavior(
73              name = ClientBehaviors.CLICK,
74              description = "Behavior of a click event.",
75              isDefault = true),
76          @Behavior(
77              name = ClientBehaviors.DBLCLICK)
78      },
79      rendererType = RendererTypes.TREE_COMMAND)
80  public interface TreeCommandTagDeclaration
81      extends HasIdBindingAndRendered, HasAction, HasActionListener, IsImmediateCommand, HasConfirmation,
82      HasLink, HasOutcome, HasFragment, IsTransition, HasTarget, IsDisabledBySecurity,
83      IsOmit, HasLabel, HasAccessKey, HasTip, HasTabIndex, IsVisual {
84  }