Interface OutTagDeclaration
- All Superinterfaces:
HasAutoSpacing
,HasBinding
,HasConverter
,HasDecorationPosition
,HasId
,HasIdBindingAndRendered
,HasLabel
,HasLabelLayout
,HasSanitize
,HasTip
,HasValue
,IsPlain
,IsRendered
,IsVisual
public interface OutTagDeclaration
extends HasIdBindingAndRendered, HasConverter, HasTip, HasValue, IsVisual, HasSanitize, HasLabel, HasLabelLayout, IsPlain, HasAutoSpacing, HasDecorationPosition
Renders a text
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setCompact
(String compact) Deprecated.since 4.3.0.void
setCreateSpan
(String createSpan) Deprecated.after 4.0.0 release.void
Flag indicating that characters that are sensitive in HTML and XML markup must be escaped.void
setKeepLineBreaks
(String keepLineBreaks) Flag indicating that new-line characters will be converted to HTML <br>.void
setMessageFormat
(String messageFormat) Activates formatting of the value with the methodMessageFormat.format(String, Object...)
A parameters the values of the children of typeUIParameter
are used.Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasAutoSpacing
setAutoSpacing
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasBinding
setBinding
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasConverter
setConverter
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasDecorationPosition
setHelpPosition, setMessagePosition
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasLabel
setLabel
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasLabelLayout
setLabelLayout
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasSanitize
setSanitize
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasTip
setTip
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasValue
setValue
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsPlain
setPlain
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsRendered
setRendered
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsVisual
setCustomClass, setMarkup
-
Method Details
-
setEscape
Flag indicating that characters that are sensitive in HTML and XML markup must be escaped. -
setKeepLineBreaks
Flag indicating that new-line characters will be converted to HTML <br>. This is useful for pre-formatted plain text. This has only an effect, with escape="true". -
setCreateSpan
Deprecated.after 4.0.0 release. Use attribute 'plain' instead (IsPlain.setPlain(String)
).Indicates that the renderer should create an element in the output language (e. g. an span or div tag around the output text). Use true, if you enable the possibility to apply styles to the output. Use false, if you want to keep the code small (especially inside of sheets). -
setCompact
Deprecated.since 4.3.0. Use attribute 'plain' instead.This attribute is useful if labelLayout=skip is set. Use true, if you want to only render the text (no surrounding tag). Use false, if you enable the possibility to apply styles to the output. -
setMessageFormat
Activates formatting of the value with the methodMessageFormat.format(String, Object...)
A parameters the values of the children of typeUIParameter
are used.- Since:
- 5.5.0
-