1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.apache.myfaces.tobago.internal.taglib.component;
21
22 import org.apache.myfaces.tobago.apt.annotation.Facet;
23 import org.apache.myfaces.tobago.apt.annotation.Tag;
24 import org.apache.myfaces.tobago.apt.annotation.UIComponentTag;
25 import org.apache.myfaces.tobago.component.Facets;
26 import org.apache.myfaces.tobago.component.RendererTypes;
27 import org.apache.myfaces.tobago.internal.taglib.declaration.HasCurrentMarkup;
28 import org.apache.myfaces.tobago.internal.taglib.declaration.HasIdBindingAndRendered;
29 import org.apache.myfaces.tobago.internal.taglib.declaration.HasMarkup;
30 import org.apache.myfaces.tobago.internal.taglib.declaration.HasTip;
31 import org.apache.myfaces.tobago.internal.taglib.declaration.IsGridLayoutComponent;
32 import org.apache.myfaces.tobago.internal.taglib.declaration.IsGridLayoutContainer;
33
34 import javax.faces.component.UIPanel;
35
36
37
38
39
40 @Tag(name = "panel")
41 @UIComponentTag(
42 uiComponent = "org.apache.myfaces.tobago.component.UIPanel",
43 uiComponentBaseClass = "org.apache.myfaces.tobago.internal.component.AbstractUIPanel",
44 uiComponentFacesClass = "javax.faces.component.UIPanel",
45 componentFamily = UIPanel.COMPONENT_FAMILY,
46 rendererType = RendererTypes.PANEL,
47 interfaces = "org.apache.myfaces.tobago.component.SupportsMarkup",
48 facets = {
49 @Facet(name= Facets.RELOAD, description = "Contains an instance of UIReload",
50 allowedChildComponenents = "org.apache.myfaces.tobago.Reload"),
51 @Facet(name=Facets.LAYOUT, description = "Contains an instance of AbstractUILayoutBase",
52 allowedChildComponenents = "org.apache.myfaces.tobago.GridLayout")})
53 public interface PanelTagDeclaration
54 extends HasIdBindingAndRendered, IsGridLayoutComponent, IsGridLayoutContainer, HasMarkup, HasCurrentMarkup, HasTip {
55 }