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.Markup;
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.HasCollapsedMode;
31  import org.apache.myfaces.tobago.internal.taglib.declaration.HasIdBindingAndRendered;
32  import org.apache.myfaces.tobago.internal.taglib.declaration.HasTip;
33  import org.apache.myfaces.tobago.internal.taglib.declaration.IsCollapsed;
34  import org.apache.myfaces.tobago.internal.taglib.declaration.IsVisual;
35  
36  import javax.faces.component.UIPanel;
37  
38  /**
39   * Intended for use in situations when only one UIComponent child can be
40   * nested, such as in the case of facets.
41   */
42  @Tag(name = "panel")
43  @UIComponentTag(
44      uiComponent = "org.apache.myfaces.tobago.component.UIPanel",
45      uiComponentFacesClass = "javax.faces.component.UIPanel",
46      componentFamily = UIPanel.COMPONENT_FAMILY,
47      rendererType = RendererTypes.PANEL,
48      facets = {
49          @Facet(name = Facets.RELOAD, description = "Contains an instance of UIReload",
50              allowedChildComponenents = "org.apache.myfaces.tobago.Reload")},
51      behaviors = {
52          @Behavior(
53              name = ClientBehaviors.CLICK,
54              isDefault = true),
55          @Behavior(
56              name = ClientBehaviors.DBLCLICK),
57          @Behavior(
58              name = ClientBehaviors.MOUSEOVER),
59          @Behavior(
60              name = ClientBehaviors.MOUSEOUT)
61      },
62      markups = {
63          @Markup(
64              name = org.apache.myfaces.tobago.context.Markup.STRING_SPREAD,
65              description = "Use the full height for the HTML content."
66          )
67      })
68  public interface PanelTagDeclaration
69      extends HasIdBindingAndRendered, IsVisual, IsCollapsed, HasCollapsedMode, HasTip {
70  }