/** * Copyright 2014-2017 Riccardo Massera (TheCoder4.Eu) and Stephan Rauh (http://www.beyondjava.net). * * This file is part of BootsFaces. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package net.bootsfaces.component.messages; import javax.el.ValueExpression; import javax.faces.component.FacesComponent; import net.bootsfaces.C; import net.bootsfaces.listeners.AddResourcesListener; import net.bootsfaces.render.IResponsive; import net.bootsfaces.utils.BsfUtils; /** * * <p> * By default, the <code>rendererType</code> property must be set to * "<code>javax.faces.Messages</code>". This value can be changed by calling the * <code>setRendererType()</code> method. * </p> */ @FacesComponent("net.bootsfaces.component.messages.Messages") public class Messages extends javax.faces.component.UIMessages implements IResponsive { public Messages() { super(); AddResourcesListener.addThemedCSSResource("core.css"); //!bs-less//AddResourcesListener.addThemedCSSResource("alerts.css"); //AddResourcesListener.addThemedCSSResource("bsf.css"); AddResourcesListener.addResourceToHeadButAfterJQuery(C.BSF_LIBRARY, "js/alert.js"); setRendererType("net.bootsfaces.component.messages.MessagesRenderer"); } public void setValueExpression(String name, ValueExpression binding) { name = BsfUtils.snakeCaseToCamelCase(name); super.setValueExpression(name, binding); } protected enum PropertyKeys { colLg, colMd, colSm, colXs, dir, display, errorClass, errorStyle, escape, fatalClass, fatalStyle, _for, globalOnly, hidden, infoClass, infoStyle, largeScreen, lineBreak, lineBreakTag, mediumScreen, offset, offsetLg, offsetMd, offsetSm, offsetXs, onlyMostSevere, recursive, showDetail, showIcon, showSummary, smallScreen, span, style, styleClass, tinyScreen, tooltip, tooltipContainer, tooltipDelay, tooltipDelayHide, tooltipDelayShow, tooltipPosition, visible, warnClass, warnStyle; String toString; PropertyKeys(String toString) { this.toString = toString; } PropertyKeys() { } public String toString() { return ((this.toString != null) ? this.toString : super.toString()); } } /** * Integer value to specify how many columns to span on large screens (≥1200 pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * @return Returns the value of the attribute, or "-1", if it hasn't been set by the JSF file. */ public String getColLg() { return (String) getStateHelper().eval(PropertyKeys.colLg, "-1"); } /** * Integer value to specify how many columns to span on large screens (≥1200 pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * Usually this method is called internally by the JSF engine. */ public void setColLg(String _colLg) { getStateHelper().put(PropertyKeys.colLg, _colLg); } /** * Integer value to specify how many columns to span on medium screens (≥992 pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * @return Returns the value of the attribute, or "-1", if it hasn't been set by the JSF file. */ public String getColMd() { return (String) getStateHelper().eval(PropertyKeys.colMd, "-1"); } /** * Integer value to specify how many columns to span on medium screens (≥992 pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * Usually this method is called internally by the JSF engine. */ public void setColMd(String _colMd) { getStateHelper().put(PropertyKeys.colMd, _colMd); } /** * Integer value to specify how many columns to span on small screens (≥768p pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * @return Returns the value of the attribute, or "-1", if it hasn't been set by the JSF file. */ public String getColSm() { return (String) getStateHelper().eval(PropertyKeys.colSm, "-1"); } /** * Integer value to specify how many columns to span on small screens (≥768p pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * Usually this method is called internally by the JSF engine. */ public void setColSm(String _colSm) { getStateHelper().put(PropertyKeys.colSm, _colSm); } /** * Integer value to specify how many columns to span on tiny screens (≤ 767 pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * @return Returns the value of the attribute, or "-1", if it hasn't been set by the JSF file. */ public String getColXs() { return (String) getStateHelper().eval(PropertyKeys.colXs, "-1"); } /** * Integer value to specify how many columns to span on tiny screens (≤ 767 pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * Usually this method is called internally by the JSF engine. */ public void setColXs(String _colXs) { getStateHelper().put(PropertyKeys.colXs, _colXs); } /** * HTML: The direction of text display, either 'ltr' (left-to-right) or 'rtl' (right-to-left). <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getDir() { return (String) getStateHelper().eval(PropertyKeys.dir); } /** * HTML: The direction of text display, either 'ltr' (left-to-right) or 'rtl' (right-to-left). <P> * Usually this method is called internally by the JSF engine. */ public void setDir(String _dir) { getStateHelper().put(PropertyKeys.dir, _dir); } /** * If you use the "visible" attribute, the value of this attribute is added. Legal values: block, inline, inline-block. Default: block. <P> * @return Returns the value of the attribute, or "block", if it hasn't been set by the JSF file. */ public String getDisplay() { return (String) getStateHelper().eval(PropertyKeys.display, "block"); } /** * If you use the "visible" attribute, the value of this attribute is added. Legal values: block, inline, inline-block. Default: block. <P> * Usually this method is called internally by the JSF engine. */ public void setDisplay(String _display) { getStateHelper().put(PropertyKeys.display, _display); } /** * CSS class to be used for messages with severity "ERROR". <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getErrorClass() { return (String) getStateHelper().eval(PropertyKeys.errorClass); } /** * CSS class to be used for messages with severity "ERROR". <P> * Usually this method is called internally by the JSF engine. */ public void setErrorClass(String _errorClass) { getStateHelper().put(PropertyKeys.errorClass, _errorClass); } /** * CSS style to be used for messages with severity "ERROR". <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getErrorStyle() { return (String) getStateHelper().eval(PropertyKeys.errorStyle); } /** * CSS style to be used for messages with severity "ERROR". <P> * Usually this method is called internally by the JSF engine. */ public void setErrorStyle(String _errorStyle) { getStateHelper().put(PropertyKeys.errorStyle, _errorStyle); } /** * By default, error messages encode HTML and JavaScript code. Instead of being executed, the source code is displayed. This protects you against hacker attacks. By setting escape=false, you deactivate the protection, and allow HTML and JavaScript code to be rendered. <P> * @return Returns the value of the attribute, or true, if it hasn't been set by the JSF file. */ public boolean isEscape() { return (boolean) (Boolean) getStateHelper().eval(PropertyKeys.escape, true); } /** * By default, error messages encode HTML and JavaScript code. Instead of being executed, the source code is displayed. This protects you against hacker attacks. By setting escape=false, you deactivate the protection, and allow HTML and JavaScript code to be rendered. <P> * Usually this method is called internally by the JSF engine. */ public void setEscape(boolean _escape) { getStateHelper().put(PropertyKeys.escape, _escape); } /** * CSS class to be used for messages with severity "FATAL". <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getFatalClass() { return (String) getStateHelper().eval(PropertyKeys.fatalClass); } /** * CSS class to be used for messages with severity "FATAL". <P> * Usually this method is called internally by the JSF engine. */ public void setFatalClass(String _fatalClass) { getStateHelper().put(PropertyKeys.fatalClass, _fatalClass); } /** * CSS style to be used for messages with severity "FATAL". <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getFatalStyle() { return (String) getStateHelper().eval(PropertyKeys.fatalStyle); } /** * CSS style to be used for messages with severity "FATAL". <P> * Usually this method is called internally by the JSF engine. */ public void setFatalStyle(String _fatalStyle) { getStateHelper().put(PropertyKeys.fatalStyle, _fatalStyle); } /** * Optional id or search expression. Only the messages of the component defined by the id and its children are shown. By default, the algorithm checks the ids, which means the the 'for' component has to be a NamingContainer. Note that this algorithm fails if you use the prependId='false'. Alternatively, you can activate a slower but more flexible algorithm by setting 'recursive' to true. <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getFor() { return (String) getStateHelper().eval(PropertyKeys._for); } /** * Optional id or search expression. Only the messages of the component defined by the id and its children are shown. By default, the algorithm checks the ids, which means the the 'for' component has to be a NamingContainer. Note that this algorithm fails if you use the prependId='false'. Alternatively, you can activate a slower but more flexible algorithm by setting 'recursive' to true. <P> * Usually this method is called internally by the JSF engine. */ public void setFor(String _for) { getStateHelper().put(PropertyKeys._for, _for); } /** * Specifies whether only messages (FacesMessage objects) not associated with a specific component should be displayed, ie whether messages should be ignored if they are attached to a particular component. Defaults to false. <P> * @return Returns the value of the attribute, or , false, if it hasn't been set by the JSF file. */ public boolean isGlobalOnly() { return (boolean) (Boolean) getStateHelper().eval(PropertyKeys.globalOnly, false); } /** * Specifies whether only messages (FacesMessage objects) not associated with a specific component should be displayed, ie whether messages should be ignored if they are attached to a particular component. Defaults to false. <P> * Usually this method is called internally by the JSF engine. */ public void setGlobalOnly(boolean _globalOnly) { getStateHelper().put(PropertyKeys.globalOnly, _globalOnly); } /** * This column is hidden on a certain screen size and below. Legal values: lg, md, sm, xs. <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getHidden() { return (String) getStateHelper().eval(PropertyKeys.hidden); } /** * This column is hidden on a certain screen size and below. Legal values: lg, md, sm, xs. <P> * Usually this method is called internally by the JSF engine. */ public void setHidden(String _hidden) { getStateHelper().put(PropertyKeys.hidden, _hidden); } /** * CSS class to be used for messages with severity "INFO". <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getInfoClass() { return (String) getStateHelper().eval(PropertyKeys.infoClass); } /** * CSS class to be used for messages with severity "INFO". <P> * Usually this method is called internally by the JSF engine. */ public void setInfoClass(String _infoClass) { getStateHelper().put(PropertyKeys.infoClass, _infoClass); } /** * CSS style to be used for messages with severity "INFO". <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getInfoStyle() { return (String) getStateHelper().eval(PropertyKeys.infoStyle); } /** * CSS style to be used for messages with severity "INFO". <P> * Usually this method is called internally by the JSF engine. */ public void setInfoStyle(String _infoStyle) { getStateHelper().put(PropertyKeys.infoStyle, _infoStyle); } /** * Alternative spelling to col-lg. Integer value to specify how many columns to span on large screens (≥1200 pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * @return Returns the value of the attribute, or "-1", if it hasn't been set by the JSF file. */ public String getLargeScreen() { return (String) getStateHelper().eval(PropertyKeys.largeScreen, "-1"); } /** * Alternative spelling to col-lg. Integer value to specify how many columns to span on large screens (≥1200 pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * Usually this method is called internally by the JSF engine. */ public void setLargeScreen(String _largeScreen) { getStateHelper().put(PropertyKeys.largeScreen, _largeScreen); } /** * If there's more than one message, they can optionally be separated by a line break. By default, the separator is a br tag. <P> * @return Returns the value of the attribute, or true, if it hasn't been set by the JSF file. */ public boolean isLineBreak() { return (boolean) (Boolean) getStateHelper().eval(PropertyKeys.lineBreak, true); } /** * If there's more than one message, they can optionally be separated by a line break. By default, the separator is a br tag. <P> * Usually this method is called internally by the JSF engine. */ public void setLineBreak(boolean _lineBreak) { getStateHelper().put(PropertyKeys.lineBreak, _lineBreak); } /** * If there's more than one message, they can optionally be separated by a line break. By default, the separator is a br tag. You can replace if with an arbitrary HTML snippet. <P> * @return Returns the value of the attribute, or "<br />", if it hasn't been set by the JSF file. */ public String getLineBreakTag() { return (String) getStateHelper().eval(PropertyKeys.lineBreakTag, "<br />"); } /** * If there's more than one message, they can optionally be separated by a line break. By default, the separator is a br tag. You can replace if with an arbitrary HTML snippet. <P> * Usually this method is called internally by the JSF engine. */ public void setLineBreakTag(String _lineBreakTag) { getStateHelper().put(PropertyKeys.lineBreakTag, _lineBreakTag); } /** * Alternative spelling to col-md. Integer value to specify how many columns to span on medium screens (≥992 pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * @return Returns the value of the attribute, or "-1", if it hasn't been set by the JSF file. */ public String getMediumScreen() { return (String) getStateHelper().eval(PropertyKeys.mediumScreen, "-1"); } /** * Alternative spelling to col-md. Integer value to specify how many columns to span on medium screens (≥992 pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * Usually this method is called internally by the JSF engine. */ public void setMediumScreen(String _mediumScreen) { getStateHelper().put(PropertyKeys.mediumScreen, _mediumScreen); } /** * Integer value to specify how many columns to offset. <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getOffset() { return (String) getStateHelper().eval(PropertyKeys.offset); } /** * Integer value to specify how many columns to offset. <P> * Usually this method is called internally by the JSF engine. */ public void setOffset(String _offset) { getStateHelper().put(PropertyKeys.offset, _offset); } /** * Integer value to specify how many columns to offset. <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getOffsetLg() { return (String) getStateHelper().eval(PropertyKeys.offsetLg); } /** * Integer value to specify how many columns to offset. <P> * Usually this method is called internally by the JSF engine. */ public void setOffsetLg(String _offsetLg) { getStateHelper().put(PropertyKeys.offsetLg, _offsetLg); } /** * Integer value to specify how many columns to offset. <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getOffsetMd() { return (String) getStateHelper().eval(PropertyKeys.offsetMd); } /** * Integer value to specify how many columns to offset. <P> * Usually this method is called internally by the JSF engine. */ public void setOffsetMd(String _offsetMd) { getStateHelper().put(PropertyKeys.offsetMd, _offsetMd); } /** * Integer value to specify how many columns to offset. <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getOffsetSm() { return (String) getStateHelper().eval(PropertyKeys.offsetSm); } /** * Integer value to specify how many columns to offset. <P> * Usually this method is called internally by the JSF engine. */ public void setOffsetSm(String _offsetSm) { getStateHelper().put(PropertyKeys.offsetSm, _offsetSm); } /** * Integer value to specify how many columns to offset. <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getOffsetXs() { return (String) getStateHelper().eval(PropertyKeys.offsetXs); } /** * Integer value to specify how many columns to offset. <P> * Usually this method is called internally by the JSF engine. */ public void setOffsetXs(String _offsetXs) { getStateHelper().put(PropertyKeys.offsetXs, _offsetXs); } /** * By default, b:messages shows every message reported. You can limit it to the most important messages by setting this flag to true. In this case, BootsFaces shows only the message with the severity level. <P> * @return Returns the value of the attribute, or false, if it hasn't been set by the JSF file. */ public boolean isOnlyMostSevere() { return (boolean) (Boolean) getStateHelper().eval(PropertyKeys.onlyMostSevere, false); } /** * By default, b:messages shows every message reported. You can limit it to the most important messages by setting this flag to true. In this case, BootsFaces shows only the message with the severity level. <P> * Usually this method is called internally by the JSF engine. */ public void setOnlyMostSevere(boolean _onlyMostSevere) { getStateHelper().put(PropertyKeys.onlyMostSevere, _onlyMostSevere); } /** * If set to true, b:messages checks the for attributes using a slower algorithm that doesn't require you to put the component into a namingcontainer. <P> * @return Returns the value of the attribute, or false, if it hasn't been set by the JSF file. */ public boolean isRecursive() { return (boolean) (Boolean) getStateHelper().eval(PropertyKeys.recursive, false); } /** * If set to true, b:messages checks the for attributes using a slower algorithm that doesn't require you to put the component into a namingcontainer. <P> * Usually this method is called internally by the JSF engine. */ public void setRecursive(boolean _recursive) { getStateHelper().put(PropertyKeys.recursive, _recursive); } /** * Specifies whether the detailed information from the message should be shown. Default to true. <P> * @return Returns the value of the attribute, or true, if it hasn't been set by the JSF file. */ public boolean isShowDetail() { return (boolean) (Boolean) getStateHelper().eval(PropertyKeys.showDetail, true); } /** * Specifies whether the detailed information from the message should be shown. Default to true. <P> * Usually this method is called internally by the JSF engine. */ public void setShowDetail(boolean _showDetail) { getStateHelper().put(PropertyKeys.showDetail, _showDetail); } /** * If false, the icon of the message is not show. Default = true. <P> * @return Returns the value of the attribute, or true, if it hasn't been set by the JSF file. */ public boolean isShowIcon() { return (boolean) (Boolean) getStateHelper().eval(PropertyKeys.showIcon, true); } /** * If false, the icon of the message is not show. Default = true. <P> * Usually this method is called internally by the JSF engine. */ public void setShowIcon(boolean _showIcon) { getStateHelper().put(PropertyKeys.showIcon, _showIcon); } /** * Specifies whether the summary information from the message should be shown. Defaults to true. <P> * @return Returns the value of the attribute, or true, if it hasn't been set by the JSF file. */ public boolean isShowSummary() { return (boolean) (Boolean) getStateHelper().eval(PropertyKeys.showSummary, true); } /** * Specifies whether the summary information from the message should be shown. Defaults to true. <P> * Usually this method is called internally by the JSF engine. */ public void setShowSummary(boolean _showSummary) { getStateHelper().put(PropertyKeys.showSummary, _showSummary); } /** * Alternative spelling to col-sm. Integer value to specify how many columns to span on small screens (≥768p pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * @return Returns the value of the attribute, or "-1", if it hasn't been set by the JSF file. */ public String getSmallScreen() { return (String) getStateHelper().eval(PropertyKeys.smallScreen, "-1"); } /** * Alternative spelling to col-sm. Integer value to specify how many columns to span on small screens (≥768p pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * Usually this method is called internally by the JSF engine. */ public void setSmallScreen(String _smallScreen) { getStateHelper().put(PropertyKeys.smallScreen, _smallScreen); } /** * Integer value to specify how many columns to span on medium screens (≥992 pixels). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getSpan() { return (String) getStateHelper().eval(PropertyKeys.span); } /** * Integer value to specify how many columns to span on medium screens (≥992 pixels). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * Usually this method is called internally by the JSF engine. */ public void setSpan(String _span) { getStateHelper().put(PropertyKeys.span, _span); } /** * HTML: CSS styling instructions. <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getStyle() { return (String) getStateHelper().eval(PropertyKeys.style); } /** * HTML: CSS styling instructions. <P> * Usually this method is called internally by the JSF engine. */ public void setStyle(String _style) { getStateHelper().put(PropertyKeys.style, _style); } /** * The CSS class for this element. Corresponds to the HTML 'class' attribute. <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getStyleClass() { return (String) getStateHelper().eval(PropertyKeys.styleClass); } /** * The CSS class for this element. Corresponds to the HTML 'class' attribute. <P> * Usually this method is called internally by the JSF engine. */ public void setStyleClass(String _styleClass) { getStateHelper().put(PropertyKeys.styleClass, _styleClass); } /** * Alternative spelling to col-xs. Integer value to specify how many columns to span on tiny screens (≤ 767 pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * @return Returns the value of the attribute, or "-1", if it hasn't been set by the JSF file. */ public String getTinyScreen() { return (String) getStateHelper().eval(PropertyKeys.tinyScreen, "-1"); } /** * Alternative spelling to col-xs. Integer value to specify how many columns to span on tiny screens (≤ 767 pixels wide). The number may optionally be followed by "column" or "columns". Alternative legal values: half, one-third, two-thirds, one-fourth, three-fourths. <P> * Usually this method is called internally by the JSF engine. */ public void setTinyScreen(String _tinyScreen) { getStateHelper().put(PropertyKeys.tinyScreen, _tinyScreen); } /** * If true, the message summary will be rendered as a tooltip (i.e. HTML title attribute). <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getTooltip() { return (String) getStateHelper().eval(PropertyKeys.tooltip); } /** * If true, the message summary will be rendered as a tooltip (i.e. HTML title attribute). <P> * Usually this method is called internally by the JSF engine. */ public void setTooltip(String _tooltip) { getStateHelper().put(PropertyKeys.tooltip, _tooltip); } /** * Where is the tooltip div generated? That's primarily a technical value that can be used to fix rendering errors in special cases. Also see data-container in the documentation of Bootstrap. The default value is body. <P> * @return Returns the value of the attribute, or "body", if it hasn't been set by the JSF file. */ public String getTooltipContainer() { return (String) getStateHelper().eval(PropertyKeys.tooltipContainer, "body"); } /** * Where is the tooltip div generated? That's primarily a technical value that can be used to fix rendering errors in special cases. Also see data-container in the documentation of Bootstrap. The default value is body. <P> * Usually this method is called internally by the JSF engine. */ public void setTooltipContainer(String _tooltipContainer) { getStateHelper().put(PropertyKeys.tooltipContainer, _tooltipContainer); } /** * The tooltip is shown and hidden with a delay. This value is the delay in milliseconds. Defaults to 0 (no delay). <P> * @return Returns the value of the attribute, or 0, if it hasn't been set by the JSF file. */ public int getTooltipDelay() { return (int) (Integer) getStateHelper().eval(PropertyKeys.tooltipDelay, 0); } /** * The tooltip is shown and hidden with a delay. This value is the delay in milliseconds. Defaults to 0 (no delay). <P> * Usually this method is called internally by the JSF engine. */ public void setTooltipDelay(int _tooltipDelay) { getStateHelper().put(PropertyKeys.tooltipDelay, _tooltipDelay); } /** * The tooltip is hidden with a delay. This value is the delay in milliseconds. Defaults to 0 (no delay). <P> * @return Returns the value of the attribute, or 0, if it hasn't been set by the JSF file. */ public int getTooltipDelayHide() { return (int) (Integer) getStateHelper().eval(PropertyKeys.tooltipDelayHide, 0); } /** * The tooltip is hidden with a delay. This value is the delay in milliseconds. Defaults to 0 (no delay). <P> * Usually this method is called internally by the JSF engine. */ public void setTooltipDelayHide(int _tooltipDelayHide) { getStateHelper().put(PropertyKeys.tooltipDelayHide, _tooltipDelayHide); } /** * The tooltip is shown with a delay. This value is the delay in milliseconds. Defaults to 0 (no delay). <P> * @return Returns the value of the attribute, or 0, if it hasn't been set by the JSF file. */ public int getTooltipDelayShow() { return (int) (Integer) getStateHelper().eval(PropertyKeys.tooltipDelayShow, 0); } /** * The tooltip is shown with a delay. This value is the delay in milliseconds. Defaults to 0 (no delay). <P> * Usually this method is called internally by the JSF engine. */ public void setTooltipDelayShow(int _tooltipDelayShow) { getStateHelper().put(PropertyKeys.tooltipDelayShow, _tooltipDelayShow); } /** * Where is the tooltip to be displayed? Possible values: "top", "bottom", "right", "left", "auto", "auto top", "auto bottom", "auto right" and "auto left". Default to "bottom". <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getTooltipPosition() { return (String) getStateHelper().eval(PropertyKeys.tooltipPosition); } /** * Where is the tooltip to be displayed? Possible values: "top", "bottom", "right", "left", "auto", "auto top", "auto bottom", "auto right" and "auto left". Default to "bottom". <P> * Usually this method is called internally by the JSF engine. */ public void setTooltipPosition(String _tooltipPosition) { getStateHelper().put(PropertyKeys.tooltipPosition, _tooltipPosition); } /** * This column is shown on a certain screen size and above. Legal values: lg, md, sm, xs. <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getVisible() { return (String) getStateHelper().eval(PropertyKeys.visible); } /** * This column is shown on a certain screen size and above. Legal values: lg, md, sm, xs. <P> * Usually this method is called internally by the JSF engine. */ public void setVisible(String _visible) { getStateHelper().put(PropertyKeys.visible, _visible); } /** * CSS class to be used for messages with severity "WARN". <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getWarnClass() { return (String) getStateHelper().eval(PropertyKeys.warnClass); } /** * CSS class to be used for messages with severity "WARN". <P> * Usually this method is called internally by the JSF engine. */ public void setWarnClass(String _warnClass) { getStateHelper().put(PropertyKeys.warnClass, _warnClass); } /** * CSS style to be used for messages with severity "WARN". <P> * @return Returns the value of the attribute, or null, if it hasn't been set by the JSF file. */ public String getWarnStyle() { return (String) getStateHelper().eval(PropertyKeys.warnStyle); } /** * CSS style to be used for messages with severity "WARN". <P> * Usually this method is called internally by the JSF engine. */ public void setWarnStyle(String _warnStyle) { getStateHelper().put(PropertyKeys.warnStyle, _warnStyle); } }