Interface OutTagDeclaration
- All Superinterfaces:
- HasAutoSpacing,- HasBinding,- HasConverter,- HasId,- HasIdBindingAndRendered,- HasLabel,- HasLabelLayout,- HasSanitize,- HasTip,- HasValue,- IsPlain,- IsRendered,- IsVisual
public interface OutTagDeclaration
extends HasIdBindingAndRendered, HasConverter, HasTip, HasValue, IsVisual, HasSanitize, HasLabel, HasLabelLayout, IsPlain, HasAutoSpacing
Renders a text
- 
Method SummaryModifier and TypeMethodDescriptionvoidsetCompact(String compact) Deprecated.since 4.3.0.voidsetCreateSpan(String createSpan) Deprecated.after 4.0.0 release.voidFlag indicating that characters that are sensitive in HTML and XML markup must be escaped.voidsetKeepLineBreaks(String keepLineBreaks) Flag indicating that new-line characters will be converted to HTML <br>.Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasAutoSpacingsetAutoSpacingMethods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasBindingsetBindingMethods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasConvertersetConverterMethods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasLabelsetLabelMethods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasLabelLayoutsetLabelLayoutMethods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasSanitizesetSanitizeMethods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasTipsetTipMethods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasValuesetValueMethods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsPlainsetPlainMethods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsRenderedsetRenderedMethods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsVisualsetCustomClass, setMarkup
- 
Method Details- 
setEscapeFlag indicating that characters that are sensitive in HTML and XML markup must be escaped.
- 
setKeepLineBreaksFlag 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".
- 
setCreateSpanDeprecated.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).
- 
setCompactDeprecated.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.
 
-