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.HasImage;
37  import org.apache.myfaces.tobago.internal.taglib.declaration.HasLabel;
38  import org.apache.myfaces.tobago.internal.taglib.declaration.HasLink;
39  import org.apache.myfaces.tobago.internal.taglib.declaration.HasOutcome;
40  import org.apache.myfaces.tobago.internal.taglib.declaration.HasTabIndex;
41  import org.apache.myfaces.tobago.internal.taglib.declaration.HasTarget;
42  import org.apache.myfaces.tobago.internal.taglib.declaration.HasTip;
43  import org.apache.myfaces.tobago.internal.taglib.declaration.IsDisabledBySecurity;
44  import org.apache.myfaces.tobago.internal.taglib.declaration.IsImmediateCommand;
45  import org.apache.myfaces.tobago.internal.taglib.declaration.IsOmit;
46  import org.apache.myfaces.tobago.internal.taglib.declaration.IsTransition;
47  import org.apache.myfaces.tobago.internal.taglib.declaration.IsVisual;
48  
49  import javax.faces.component.UICommand;
50  
51  /**
52   * Renders a link element, i. e. an anchor <a> tag.
53   * For a <link> tag, please use <tc:metaLink> tag.
54   */
55  @Tag(name = "link")
56  @BodyContentDescription(anyTagOf = "facestag")
57  @UIComponentTag(
58      uiComponent = "org.apache.myfaces.tobago.component.UILink",
59      uiComponentFacesClass = "javax.faces.component.UICommand",
60      interfaces = "org.apache.myfaces.tobago.component.SupportsAccessKey",
61      componentFamily = UICommand.COMPONENT_FAMILY,
62      rendererType = RendererTypes.LINK,
63      allowedChildComponenents = "NONE",
64      facets = {
65          @Facet(
66              name = Facets.CONFIRMATION,
67              description = "Contains a UIOutput instance with the confirmation message.",
68              allowedChildComponenents = "org.apache.myfaces.tobago.Out")},
69      behaviors = {
70          @Behavior(
71              name = ClientBehaviors.CLICK,
72              description = "Behavior of a click event.",
73              isDefault = true),
74          @Behavior(
75              name = ClientBehaviors.DBLCLICK),
76          @Behavior(
77              name = ClientBehaviors.FOCUS),
78          @Behavior(
79              name = ClientBehaviors.BLUR)
80      })
81  public interface LinkTagDeclaration
82      extends HasIdBindingAndRendered, HasAction, HasActionListener, IsImmediateCommand, HasConfirmation,
83              HasLink, HasOutcome, HasFragment, IsTransition, HasTarget, IsDisabledBySecurity,
84              IsOmit, HasImage, HasTabIndex, IsVisual, HasLabel, HasAccessKey, HasTip {
85  }