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.component;
21  
22  /**
23   * Constants for the renderer type
24   */
25  public enum RendererTypes {
26  
27    Badge,
28    Bar,
29    Box,
30    Button,
31    Buttons,
32    Calendar,
33    Column,
34    ColumnSelector,
35    Date,
36    Event,
37    Figure,
38    File,
39    FlexLayout,
40    FlowLayout,
41    Footer,
42    Form,
43    GridLayout,
44    Header,
45    Hidden,
46    In,
47    Image,
48    Link,
49    Links,
50    Label,
51    Messages,
52    Meta,
53    MetaLink,
54    Object,
55    Operation,
56    Out,
57    Page,
58    Panel,
59    Popup,
60    Progress,
61    Range,
62    Row,
63    Script,
64    Section,
65    SegmentLayout,
66    SelectBooleanCheckbox,
67    SelectBooleanToggle,
68    SelectManyCheckbox,
69    SelectManyListbox,
70    SelectManyShuttle,
71    SelectOneChoice,
72    SelectOneRadio,
73    SelectOneListbox,
74    SelectReference,
75    Separator,
76    Sheet,
77    SheetPageCommand,
78    Stars,
79    Style,
80    Suggest,
81    Textarea,
82    Tab,
83    TabGroup,
84    ToolBar,
85    Tree,
86    /**
87     * @deprecated since 2.0.0
88     */
89    @Deprecated
90    TreeData,
91    TreeIcon,
92    TreeIndent,
93    TreeLabel,
94    TreeListbox,
95    TreeNode,
96    TreeSelect;
97  
98    public static final String BADGE = "Badge";
99    public static final String BAR = "Bar";
100   public static final String BOX = "Box";
101   public static final String BUTTON = "Button";
102   public static final String BUTTONS = "Buttons";
103   public static final String CALENDAR = "Calendar";
104   public static final String COLUMN = "Column";
105   public static final String COLUMN_SELECTOR = "ColumnSelector";
106   public static final String EVENT = "Event";
107   public static final String DATE = "Date";
108   public static final String FIGURE = "Figure";
109   public static final String FILE = "File";
110   public static final String FLEX_LAYOUT = "FlexLayout";
111   public static final String FLOW_LAYOUT = "FlowLayout";
112   public static final String FOOTER = "Footer";
113   public static final String FORM = "Form";
114   public static final String GRID_LAYOUT = "GridLayout";
115   public static final String HEADER = "Header";
116   public static final String HIDDEN = "Hidden";
117   public static final String IN = "In";
118   public static final String IMAGE = "Image";
119   public static final String LINK = "Link";
120   public static final String LINKS = "Links";
121   public static final String LABEL = "Label";
122   public static final String MESSAGES = "Messages";
123   public static final String META = "Meta";
124   public static final String META_LINK = "MetaLink";
125   public static final String OBJECT = "Object";
126   public static final String OPERATION = "Operation";
127   public static final String OUT = "Out";
128   public static final String PAGE = "Page";
129   public static final String PANEL = "Panel";
130   public static final String POPUP = "Popup";
131   public static final String PROGRESS = "Progress";
132   public static final String RANGE = "Range";
133   public static final String ROW = "Row";
134   public static final String SCRIPT = "Script";
135   public static final String SECTION = "Section";
136   public static final String SEGMENT_LAYOUT = "SegmentLayout";
137   public static final String SELECT_BOOLEAN_CHECKBOX = "SelectBooleanCheckbox";
138   public static final String SELECT_BOOLEAN_TOGGLE = "SelectBooleanToggle";
139   public static final String SELECT_MANY_CHECKBOX = "SelectManyCheckbox";
140   public static final String SELECT_MANY_LISTBOX = "SelectManyListbox";
141   public static final String SELECT_MANY_SHUTTLE = "SelectManyShuttle";
142   public static final String SELECT_ONE_CHOICE = "SelectOneChoice";
143   public static final String SELECT_ONE_RADIO = "SelectOneRadio";
144   public static final String SELECT_ONE_LISTBOX = "SelectOneListbox";
145   public static final String SELECT_REFERENCE = "SelectReference";
146   public static final String SEPARATOR = "Separator";
147   public static final String SHEET = "Sheet";
148   public static final String SHEET_PAGE_COMMAND = "SheetPageCommand";
149   public static final String STARS = "Stars";
150   public static final String STYLE = "Style";
151   public static final String SUGGEST = "Suggest";
152   public static final String TEXTAREA = "Textarea";
153   public static final String TAB = "Tab";
154   public static final String TAB_GROUP = "TabGroup";
155   public static final String TOOL_BAR = "ToolBar";
156   public static final String TREE = "Tree";
157   /**
158    * @deprecated since 2.0.0
159    */
160   @Deprecated
161   public static final String TREE_DATA = "TreeData";
162   public static final String TREE_ICON = "TreeIcon";
163   public static final String TREE_INDENT = "TreeIndent";
164   public static final String TREE_LABEL = "TreeLabel";
165   public static final String TREE_LISTBOX = "TreeListbox";
166   public static final String TREE_NODE = "TreeNode";
167   public static final String TREE_SELECT = "TreeSelect";
168 }