Package com.storedobject.vaadin
Interface HTMLGenerator
- All Known Subinterfaces:
GridCellText
,StyledBuilder
- All Known Implementing Classes:
Alert
,CSVUploadProcessorView
,ELabel
,ELabelField
,ELabels
,ExcelDataUpload
,HTMLText
,ProcessView
,StyledString
,StyledText
,TextView
,UploadProcessorView
,ZipUploadProcessorView
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
An interface that generate HTML text.
- Author:
- Syam
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic String
encodeHTML
(String string) Encode a string so that HTML character entities and newline characters are properly replaced.getHTML()
Get the HTML text generated.default Object
Get a printable object that can be used for creating a printable representation of the HTML text.
-
Field Details
-
CHAR_ENTITIES
HTML character entities
-
-
Method Details
-
getHTML
String getHTML()Get the HTML text generated. (The generated HTML may not contain outer tags. So, span or div tag may be used to bracket it in order to make it a valid HTML text).- Returns:
- HTML text generated.
-
getPrintText
Get a printable object that can be used for creating a printable representation of the HTML text.- Returns:
- The default implementation returns the HTML text getHTML() returns after handling line-breaks and simple ampersand coded characters.
-
encodeHTML
-