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;
21
22 /**
23 * @see org.apache.myfaces.tobago.component.Attributes
24 * @see org.apache.myfaces.tobago.component.Facets
25 * @see org.apache.myfaces.tobago.component.RendererTypes
26 * @see org.apache.myfaces.tobago.internal.component.AbstractUICommandBase
27 * @see org.apache.myfaces.tobago.component.OnComponentCreated
28 * @see org.apache.myfaces.tobago.renderkit.HtmlUtils
29 * @see org.apache.myfaces.tobago.util.ComponentUtils
30 * @deprecated
31 */
32 @Deprecated
33 public final class TobagoConstants {
34
35 /** @deprecated Please use ComponentUtils.SUB_SEPARATOR instead. Will be removed after Tobago 1.5 */
36 @Deprecated
37 public static final String SUBCOMPONENT_SEP = "::";
38
39 /** @deprecated Please use AbstractUICommand instead. Will be removed after Tobago 1.5 */
40 @Deprecated
41 public static final String COMMAND_TYPE_SUBMIT = "submit";
42 /** @deprecated Please use AbstractUICommand instead. Will be removed after Tobago 1.5 */
43 @Deprecated
44 public static final String COMMAND_TYPE_RESET = "reset";
45 /** @deprecated Please use AbstractUICommand instead. Will be removed after Tobago 1.5 */
46 @Deprecated
47 public static final String COMMAND_TYPE_NAVIGATE = "navigate";
48 /** @deprecated Please use AbstractUICommand instead. Will be removed after Tobago 1.5 */
49 @Deprecated
50 public static final String COMMAND_TYPE_SCRIPT = "script";
51
52 /** @deprecated Please use AbstractUIPage instead. Will be removed after Tobago 1.5 */
53 @Deprecated
54 public static final String FORM_ACCEPT_CHARSET = "utf-8";
55
56 /** @deprecated Please use OnComponentCreated instead. Will be removed after Tobago 1.5 */
57 @Deprecated
58 public static final String TOBAGO_COMPONENT_CREATED = "org.apache.myfaces.tobago.CREATION_MARKER";
59
60 /** @deprecated Please use HtmlUtils instead. Will be removed after Tobago 1.5 */
61 @Deprecated
62 public static final String CHAR_NON_BEAKING_SPACE = "\u00a0";
63
64 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
65 @Deprecated
66 public static final String ATTR_ACTION = "action";
67 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
68 @Deprecated
69 public static final String ATTR_ACTION_ONCLICK = "onclick";
70 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
71 @Deprecated
72 public static final String ATTR_ACTION_LINK = "link";
73 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
74 @Deprecated
75 public static final String ATTR_ACTION_LISTENER = "actionListener";
76 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
77 @Deprecated
78 public static final String ATTR_ALIGN = "align";
79 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
80 @Deprecated
81 public static final String ATTR_ALT = "alt";
82 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
83 @Deprecated
84 public static final String ATTR_AUTO_RELOAD = "autoReload";
85 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
86 @Deprecated
87 public static final String ATTR_BODY_CONTENT = "bodyContent";
88 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
89 @Deprecated
90 public static final String ATTR_BORDER = "border";
91 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
92 @Deprecated
93 public static final String ATTR_CHARSET = "charset";
94 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
95 @Deprecated
96 public static final String ATTR_CALENDAR_DATE_INPUT_ID = "CalendarDateInputId";
97 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
98 @Deprecated
99 public static final String ATTR_CELLSPACING = "cellspacing";
100 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
101 @Deprecated
102 public static final String ATTR_CLASSES_BLOCKS = "cssClassesBlocks";
103 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
104 @Deprecated
105 public static final String ATTR_CLIENT_PROPERTIES = "clientProperties";
106 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
107 @Deprecated
108 public static final String ATTR_COLUMNS = "columns";
109 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
110 @Deprecated
111 public static final String ATTR_CONVERTER = "converter";
112 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
113 @Deprecated
114 public static final String ATTR_DATE_STYLE = "dateStyle";
115 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
116 @Deprecated
117 public static final String ATTR_DEFAULT_COMMAND = "defaultCommand";
118 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
119 @Deprecated
120 public static final String ATTR_DELAY = "delay";
121 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
122 @Deprecated
123 public static final String ATTR_DIRECT_LINK_COUNT = "directLinkCount";
124 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
125 @Deprecated
126 public static final String ATTR_DISABLED = "disabled";
127 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
128 @Deprecated
129 public static final String ATTR_ENCTYPE = "enctype";
130 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
131 @Deprecated
132 public static final String ATTR_ESCAPE = "escape";
133 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
134 @Deprecated
135 public static final String ATTR_EXPANDED = "expanded";
136 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
137 @Deprecated
138 public static final String ATTR_EVENT = "event";
139 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
140 @Deprecated
141 public static final String ATTR_FIRST = "first";
142 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
143 @Deprecated
144 public static final String ATTR_FREQUENCY = "frequency";
145 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
146 @Deprecated
147 public static final String ATTR_FOCUS = "focus";
148 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
149 @Deprecated
150 public static final String ATTR_FOCUS_ID = "focusId";
151 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
152 @Deprecated
153 public static final String ATTR_FOOTER_HEIGHT = "footerHeight";
154 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
155 @Deprecated
156 public static final String ATTR_FORCE_VERTICAL_SCROLLBAR = "forceVerticalScrollbar";
157 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
158 @Deprecated
159 public static final String ATTR_FORMAT_PATTERN = "formatPattern";
160 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
161 @Deprecated
162 public static final String ATTR_FOR = "for";
163 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
164 @Deprecated
165 public static final String ATTR_GLOBAL_ONLY = "globalOnly";
166 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
167 @Deprecated
168 public static final String ATTR_HEIGHT = "height";
169 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
170 @Deprecated
171 public static final String ATTR_HIDDEN = "hidden";
172 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
173 @Deprecated
174 public static final String ATTR_HOVER = "hover";
175 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
176 @Deprecated
177 public static final String ATTR_I18N = "i18n";
178 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
179 @Deprecated
180 public static final String ATTR_ICON_SIZE = "iconSize";
181 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
182 @Deprecated
183 public static final String ATTR_ID = "id";
184 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
185 @Deprecated
186 public static final String ATTR_IMMEDIATE = "immediate";
187 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
188 @Deprecated
189 public static final String ATTR_IMAGE = "image";
190 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
191 @Deprecated
192 public static final String ATTR_INLINE = "inline";
193 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
194 @Deprecated
195 public static final String ATTR_INNER_HEIGHT = "innerHeight";
196 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
197 @Deprecated
198 public static final String ATTR_INNER_WIDTH = "innerWidth";
199 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
200 @Deprecated
201 public static final String ATTR_ITEM_DESCRIPTION = "itemDescription";
202 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
203 @Deprecated
204 public static final String ATTR_ITEM_DISABLED = "itemDisabled";
205 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
206 @Deprecated
207 public static final String ATTR_ITEM_LABEL = "itemLabel";
208 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
209 @Deprecated
210 public static final String ATTR_ITEM_IMAGE = "itemImage";
211 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
212 @Deprecated
213 public static final String ATTR_ITEM_VALUE = "itemValue";
214
215 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
216 @Deprecated
217 public static final String ATTR_LABEL = "label";
218 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
219 @Deprecated
220 public static final String ATTR_LABEL_POSITION = "labelPosition";
221 // public static final String ATTR_LABEL_WITH_ACCESS_KEY = "labelWithAccessKey";
222 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
223 @Deprecated
224 public static final String ATTR_LAYOUT_HEIGHT = "layoutHeight";
225 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
226 @Deprecated
227 public static final String ATTR_MARGIN = "margin";
228 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
229 @Deprecated
230 public static final String ATTR_MARGIN_BOTTOM = "marginBottom";
231 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
232 @Deprecated
233 public static final String ATTR_MARGIN_LEFT = "marginLeft";
234 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
235 @Deprecated
236 public static final String ATTR_MARGIN_RIGHT = "marginRight";
237 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
238 @Deprecated
239 public static final String ATTR_MARGIN_TOP = "marginTop";
240 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
241 @Deprecated
242 public static final String ATTR_MARKED = "marked";
243 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
244 @Deprecated
245 public static final String ATTR_MODAL = "modal";
246 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
247 @Deprecated
248 public static final String ATTR_LAYOUT_ORDER = "layoutOrder";
249 //public static final String ATTR_LAYOUT_TABLE_STYLE = "layoutTableStyle";
250 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
251 @Deprecated
252 public static final String ATTR_LAYOUT_WIDTH = "layoutWidth";
253 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
254 @Deprecated
255 public static final String ATTR_LEFT = "left";
256 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
257 @Deprecated
258 public static final String ATTR_MARKUP = "markup";
259 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
260 @Deprecated
261 public static final String ATTR_MAX = "max";
262 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
263 @Deprecated
264 public static final String ATTR_MAX_SEVERITY = "maxSeverity";
265 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
266 @Deprecated
267 public static final String ATTR_MAX_NUMBER = "maxNumber";
268 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
269 @Deprecated
270 public static final String ATTR_MENU_POPUP = "menuPopup";
271 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
272 @Deprecated
273 public static final String ATTR_MENU_POPUP_TYPE = "menuPopupType";
274 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
275 @Deprecated
276 public static final String ATTR_COMMAND_TYPE = "menuType";
277 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
278 @Deprecated
279 public static final String ATTR_METHOD = "method";
280 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
281 @Deprecated
282 public static final String ATTR_MIN = "min";
283 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
284 @Deprecated
285 public static final String ATTR_MIN_SEVERITY = "minSeverity";
286 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
287 @Deprecated
288 public static final String ATTR_MINIMUM_SIZE = "minimunSize";
289 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
290 @Deprecated
291 public static final String ATTR_MODE = "mode";
292 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
293 @Deprecated
294 public static final String ATTR_MUTABLE = "mutable";
295 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
296 @Deprecated
297 public static final String ATTR_NAME = "name";
298 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
299 @Deprecated
300 public static final String ATTR_NAVIGATE = "navigate";
301 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
302 @Deprecated
303 public static final String ATTR_NUMBER_STYLE = "numberStyle";
304 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
305 @Deprecated
306 public static final String ATTR_ONCHANGE = "onchange";
307 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
308 @Deprecated
309 public static final String ATTR_ONCLICK = "onclick";
310 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
311 @Deprecated
312 public static final String ATTR_ORDER_BY = "orderBy";
313 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
314 @Deprecated
315 public static final String ATTR_ORIENTATION = "orientation";
316 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
317 @Deprecated
318 public static final String ATTR_PAGE_MENU = "pageMenu";
319 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
320 @Deprecated
321 public static final String ATTR_PASSWORD = "password";
322 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
323 @Deprecated
324 public static final String ATTR_POPUP_LIST = "popupList";
325 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
326 @Deprecated
327 public static final String ATTR_RENDERED_PARTIALLY = "renderedPartially";
328 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
329 @Deprecated
330 public static final String ATTR_POPUP_CLOSE = "popupClose";
331 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
332 @Deprecated
333 public static final String ATTR_POPUP_RESET = "popupReset";
334 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
335 @Deprecated
336 public static final String ATTR_POPUP_CALENDAR_ID = "popupCalendarId";
337 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
338 @Deprecated
339 public static final String ATTR_PREFORMATED = "preformated";
340 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
341 @Deprecated
342 public static final String ATTR_READONLY = "readonly";
343 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
344 @Deprecated
345 public static final String ATTR_REFERENCE = "reference";
346 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
347 @Deprecated
348 public static final String ATTR_RELATIVE = "relative";
349 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
350 @Deprecated
351 public static final String ATTR_RENDERED = "rendered";
352 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
353 @Deprecated
354 public static final String ATTR_RENDERER_TYPE = "rendererType";
355 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
356 @Deprecated
357 public static final String ATTR_RENDER_AS = "renderAs";
358 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
359 @Deprecated
360 public static final String ATTR_RENDER_RANGE = "renderRange";
361 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
362 @Deprecated
363 public static final String ATTR_RENDER_RANGE_EXTERN = "renderRangeExtern";
364 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
365 @Deprecated
366 public static final String ATTR_REQUIRED = "required";
367 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
368 @Deprecated
369 public static final String ATTR_ROW_ID = "sheetRowId";
370 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
371 @Deprecated
372 public static final String ATTR_ROWS = "rows";
373 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
374 @Deprecated
375 public static final String ATTR_SCRIPT_FILES = "scriptFiles";
376 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
377 @Deprecated
378 public static final String ATTR_SCROLLBAR_HEIGHT = "scrollbarHeight";
379 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
380 @Deprecated
381 public static final String ATTR_SCROLLBARS = "scrollbars";
382 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
383 @Deprecated
384 public static final String ATTR_SELECTED_INDEX = "selectedIndex";
385 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
386 @Deprecated
387 public static final String ATTR_SELECTED_LIST_STRING = "selectedListString";
388 // public static final String ATTR_SERVER_SIDE_TABS = "serverSideTab";
389 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
390 @Deprecated
391 public static final String ATTR_SORTABLE = "sortable";
392 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
393 @Deprecated
394 public static final String ATTR_CREATE_SPAN = "createSpan";
395 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
396 @Deprecated
397 public static final String ATTR_SELECTABLE = "selectable";
398 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
399 @Deprecated
400 public static final String ATTR_SHOW_DIRECT_LINKS = "showDirectLinks";
401 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
402 @Deprecated
403 public static final String ATTR_SHOW_HEADER = "showHeader";
404 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
405 @Deprecated
406 public static final String ATTR_SHOW_ICONS = "showIcons";
407 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
408 @Deprecated
409 public static final String ATTR_SHOW_JUNCTIONS = "showJunctions";
410 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
411 @Deprecated
412 public static final String ATTR_SHOW_PAGE_RANGE = "showPageRange";
413 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
414 @Deprecated
415 public static final String ATTR_SHOW_ROOT = "showRoot";
416 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
417 @Deprecated
418 public static final String ATTR_SHOW_ROOT_JUNCTION = "showRootJunction";
419 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
420 @Deprecated
421 public static final String ATTR_SHOW_ROW_RANGE = "showRowRange";
422 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
423 @Deprecated
424 public static final String ATTR_SHOW_SUMMARY = "showSummary";
425 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
426 @Deprecated
427 public static final String ATTR_SHOW_DETAIL = "showDetail";
428 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
429 @Deprecated
430 public static final String ATTR_SPAN_X = "spanX";
431 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
432 @Deprecated
433 public static final String ATTR_SPAN_Y = "spanY";
434 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
435 @Deprecated
436 public static final String ATTR_SRC = "src";
437 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
438 @Deprecated
439 public static final String ATTR_STATE = "state";
440 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
441 @Deprecated
442 public static final String ATTR_STATE_PREVIEW = "state_preview";
443 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
444 @Deprecated
445 public static final String ATTR_STYLE = "style";
446 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
447 @Deprecated
448 public static final String ATTR_STYLE_BODY = "style_body";
449 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
450 @Deprecated
451 public static final String ATTR_STYLE_CLASS = "styleClass";
452 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
453 @Deprecated
454 public static final String ATTR_STYLE_HEADER = "style_header";
455 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
456 @Deprecated
457 public static final String ATTR_STYLE_INNER = "style_inner";
458 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
459 @Deprecated
460 public static final String ATTR_STYLE_FILES = "styleFiles";
461 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
462 @Deprecated
463 public static final String ATTR_SUPPPRESS_TOOLBAR_CONTAINER = "suppressToolbarContainer";
464 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
465 @Deprecated
466 public static final String ATTR_SWITCH_TYPE = "switchType";
467 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
468 @Deprecated
469 public static final String ATTR_TARGET = "target";
470 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
471 @Deprecated
472 public static final String ATTR_TIME_STYLE = "timeStyle";
473 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
474 @Deprecated
475 public static final String ATTR_TIMEZONE = "timezone";
476 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
477 @Deprecated
478 public static final String ATTR_TITLE = "title";
479 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
480 @Deprecated
481 public static final String ATTR_TIP = "tip";
482 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
483 @Deprecated
484 public static final String ATTR_TOP = "top";
485 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
486 @Deprecated
487 public static final String ATTR_TRANSITION = "transition";
488 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
489 @Deprecated
490 public static final String ATTR_TYPE = "type";
491 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
492 @Deprecated
493 public static final String ATTR_VALUE = "value";
494 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
495 @Deprecated
496 public static final String ATTR_VALUE_CHANGE_LISTENER = "valueChangeListener";
497 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
498 @Deprecated
499 public static final String ATTR_VAR = "var";
500 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
501 @Deprecated
502 public static final String ATTR_UNIT = "unit";
503 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
504 @Deprecated
505 public static final String ATTR_UPDATE = "update";
506 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
507 @Deprecated
508 public static final String ATTR_WIDTH = "width";
509 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
510 @Deprecated
511 public static final String ATTR_WIDTH_LIST = "widthList";
512 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
513 @Deprecated
514 public static final String ATTR_WIDTH_LIST_STRING = "widthListString";
515 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
516 @Deprecated
517 public static final String ATTR_APPLICATION_ICON = "applicationIcon";
518 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
519 @Deprecated
520 public static final String ATTR_VALIDATOR = "validator";
521 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
522 @Deprecated
523 public static final String ATTR_TAB_INDEX = "tabIndex";
524 /** @deprecated Please use Attributes instead. Will be removed after Tobago 1.5 */
525 @Deprecated
526 public static final String ATTR_ZINDEX = "zIndex";
527
528 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
529 @Deprecated
530 public static final String FACET_ACTION = "action";
531 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
532 @Deprecated
533 public static final String FACET_CONFIRMATION = "confirmation";
534 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
535 @Deprecated
536 public static final String FACET_LABEL = "label";
537 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
538 @Deprecated
539 public static final String FACET_LAYOUT = "layout";
540 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
541 @Deprecated
542 public static final String FACET_LAYOUT_DEFAULT = "layoutDefault";
543 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
544 @Deprecated
545 public static final String FACET_IMAGE = "image ";
546 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
547 @Deprecated
548 public static final String FACET_ITEMS = "items";
549 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
550 @Deprecated
551 public static final String FACET_MENUBAR = "menuBar";
552 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
553 @Deprecated
554 public static final String FACET_MENUPOPUP = "menupopup";
555 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
556 @Deprecated
557 public static final String FACET_PAGER_LINKS = "pagerLinks";
558 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
559 @Deprecated
560 public static final String FACET_PAGER_PAGE = "pagerPage";
561 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
562 @Deprecated
563 public static final String FACET_PAGER_ROW = "pagerRow";
564 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
565 @Deprecated
566 public static final String FACET_PICKER = "picker";
567 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
568 @Deprecated
569 public static final String FACET_PICKER_POPUP = "pickerPopup";
570 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
571 @Deprecated
572 public static final String FACET_POPUP = "popup";
573 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
574 @Deprecated
575 public static final String FACET_RELOAD = "reload";
576 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
577 @Deprecated
578 public static final String FACET_TOOL_BAR = "toolBar";
579 /** @deprecated Please use Facets instead. Will be removed after Tobago 1.5 */
580 @Deprecated
581 public static final String FACET_TOOL_BAR_COMMAND = "toolBarCommand";
582
583 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
584 @Deprecated
585 public static final String RENDERER_TYPE_BOX = "Box";
586 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
587 @Deprecated
588 public static final String RENDERER_TYPE_BUTTON = "Button";
589 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
590 @Deprecated
591 public static final String RENDERER_TYPE_CALENDAR = "Calendar";
592 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
593 @Deprecated
594 public static final String RENDERER_TYPE_DATE = "Date";
595 /** @deprecated Not existing any longer. Will be removed after Tobago 1.5 */
596 @Deprecated
597 public static final String RENDERER_TYPE_DEFAULT_LAYOUT = "DefaultLayout";
598 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
599 @Deprecated
600 public static final String RENDERER_TYPE_FILE = "File";
601 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
602 @Deprecated
603 public static final String RENDERER_TYPE_GRID_LAYOUT = "GridLayout";
604 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
605 @Deprecated
606 public static final String RENDERER_TYPE_HIDDEN = "Hidden";
607 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
608 @Deprecated
609 public static final String RENDERER_TYPE_IN = "In";
610 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
611 @Deprecated
612 public static final String RENDERER_TYPE_IMAGE = "Image";
613 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
614 @Deprecated
615 public static final String RENDERER_TYPE_LINK = "Link";
616 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
617 @Deprecated
618 public static final String RENDERER_TYPE_LABEL = "Label";
619 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
620 @Deprecated
621 public static final String RENDERER_TYPE_MENUBAR = "MenuBar";
622 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
623 @Deprecated
624 public static final String RENDERER_TYPE_MENUCOMMAND = "MenuCommand";
625 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
626 @Deprecated
627 public static final String RENDERER_TYPE_OUT = "Out";
628 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
629 @Deprecated
630 public static final String RENDERER_TYPE_PANEL = "Panel";
631 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
632 @Deprecated
633 public static final String RENDERER_TYPE_POPUP = "Popup";
634 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
635 @Deprecated
636 public static final String RENDERER_TYPE_DATE_PICKER = "DatePicker";
637 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
638 @Deprecated
639 public static final String RENDERER_TYPE_SELECT_BOOLEAN_CHECKBOX = "SelectBooleanCheckbox";
640 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
641 @Deprecated
642 public static final String RENDERER_TYPE_SELECT_MANY_CHECKBOX = "SelectManyCheckbox";
643 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
644 @Deprecated
645 public static final String RENDERER_TYPE_SELECT_MANY_LISTBOX = "SelectManyListbox";
646 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
647 @Deprecated
648 public static final String RENDERER_TYPE_SELECT_ONE_CHOICE = "SelectOneChoice";
649 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
650 @Deprecated
651 public static final String RENDERER_TYPE_SELECT_ONE_RADIO = "SelectOneRadio";
652 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
653 @Deprecated
654 public static final String RENDERER_TYPE_SELECT_ONE_LISTBOX = "SelectOneListbox";
655 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
656 @Deprecated
657 public static final String RENDERER_TYPE_TEXT_AREA = "Textarea";
658 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
659 @Deprecated
660 public static final String RENDERER_TYPE_TIME = "Time";
661 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
662 @Deprecated
663 public static final String RENDERER_TYPE_TOOL_BAR = "ToolBar";
664 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
665 @Deprecated
666 public static final String RENDERER_TYPE_TREE_NODE = "TreeNode";
667 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
668 @Deprecated
669 public static final String RENDERER_TYPE_TREE_OLD_NODE = "TreeOldNode";
670 /** @deprecated Please use RendererTypes instead. Will be removed after Tobago 1.5 */
671 @Deprecated
672 public static final String RENDERER_TYPE_SHEET = "Sheet";
673 /** @deprecated Not existing any longer. Will be removed after Tobago 1.5 */
674 @Deprecated
675 public static final String RENDERER_TYPE_VERBATIM = "Verbatim";
676
677 @Deprecated
678 public static final String ATTR_NAME_REFERENCE = "nameReference";
679 @Deprecated
680 public static final String ATTR_DISABLED_REFERENCE = "disabledReference";
681 @Deprecated
682 public static final String ATTR_ID_REFERENCE = "idReference";
683 @Deprecated
684 public static final String ATTR_TIP_REFERENCE = "tipReference";
685
686 private TobagoConstants() {
687 // to prevent instantiation
688 }
689 }