Interface MarkupProcessor
- All Known Implementing Classes:
MarkupDisplayConverter.MarkupValue,RegexMarkupValue
public interface MarkupProcessor
Interface for specifying markup processing by using the
MarkupDisplayConverter- Since:
- 1.1
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionapplyMarkup(String input) Takes an input and applies the HTML markup.removeMarkup(String input) Takes an input and removes possible markups that where applied by thisMarkupProcessor
-
Method Details
-
applyMarkup
Takes an input and applies the HTML markup.- Parameters:
input- The input that should be processed for markup.- Returns:
- The input with additional markups.
-
removeMarkup
Takes an input and removes possible markups that where applied by thisMarkupProcessor- Parameters:
input- The input from which the markup should be removed.- Returns:
- The input value without markups.
-