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.UIComponentTag;
23 import org.apache.myfaces.tobago.component.RendererTypes;
24
25 import javax.faces.component.UIPanel;
26
27 @UIComponentTag(
28 uiComponent = "org.apache.myfaces.tobago.component.UIToolBar",
29 uiComponentFacesClass = "javax.faces.component.UIPanel",
30 generate = false,
31 componentFamily = UIPanel.COMPONENT_FAMILY,
32 rendererType = RendererTypes.BOX_TOOL_BAR,
33 allowedChildComponenents = {
34 "org.apache.myfaces.tobago.SelectOneCommand",
35 "org.apache.myfaces.tobago.SelectBooleanCommand",
36 "org.apache.myfaces.tobago.Command"})
37 public interface BoxToolBarTagDeclaration extends ToolBarTagDeclaration{
38 }