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.Facet;
24  import org.apache.myfaces.tobago.apt.annotation.Tag;
25  import org.apache.myfaces.tobago.apt.annotation.UIComponentTag;
26  import org.apache.myfaces.tobago.component.ClientBehaviors;
27  import org.apache.myfaces.tobago.component.Facets;
28  import org.apache.myfaces.tobago.component.RendererTypes;
29  import org.apache.myfaces.tobago.internal.taglib.declaration.HasAccessKey;
30  import org.apache.myfaces.tobago.internal.taglib.declaration.HasIdBindingAndRendered;
31  import org.apache.myfaces.tobago.internal.taglib.declaration.HasImage;
32  import org.apache.myfaces.tobago.internal.taglib.declaration.HasLabel;
33  import org.apache.myfaces.tobago.internal.taglib.declaration.HasTip;
34  import org.apache.myfaces.tobago.internal.taglib.declaration.IsDisabled;
35  import org.apache.myfaces.tobago.internal.taglib.declaration.IsVisual;
36  
37  import javax.faces.component.UIPanel;
38  
39  /**
40   * Renders a tab within a tab group.
41   */
42  @Tag(name = "tab")
43  @UIComponentTag(
44      uiComponent = "org.apache.myfaces.tobago.component.UITab",
45      uiComponentFacesClass = "javax.faces.component.UIPanel",
46      componentFamily = UIPanel.COMPONENT_FAMILY,
47      rendererType = RendererTypes.TAB,
48      facets = {
49          @Facet(name = Facets.BAR,
50              description = "Contains some code to be placed in the header at the bar position."),
51          @Facet(name = Facets.LABEL,
52              description = "Contains some code to be placed in the header at the label position.")},
53      behaviors = {
54          @Behavior(
55              name = ClientBehaviors.CLICK,
56              isDefault = true)
57      })
58  public interface TabTagDeclaration
59      extends HasIdBindingAndRendered, IsVisual, HasLabel, HasAccessKey, HasTip, IsDisabled, HasImage {
60  }