Interface IFD2ReplacerProvider
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
DefaultFD2ReplacerProvider
public interface IFD2ReplacerProvider extends Serializable
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default String
parse(String text, IXFormRenderConfig renderConfig)
Deprecated.String
parse(String text, IXFormRenderConfig renderConfig, boolean escapeHtml)
Replaces placeholders in the given text, using the data from the given render config.String
parseClientFormula(String text, IXFormRenderConfig config)
-
-
-
Method Detail
-
parse
String parse(String text, IXFormRenderConfig renderConfig, boolean escapeHtml)
Replaces placeholders in the given text, using the data from the given render config.- Parameters:
text
- Text that may contain placeholders to replace.renderConfig
- Render config to use for the replacement process.escapeHtml
-true
to escape HTML in form placeholders,false
otherwise.- Returns:
- The text with all placeholders replaced.
-
parse
default String parse(String text, IXFormRenderConfig renderConfig)
Deprecated.Replaces placeholders in the given text, using the data from the given render config.- Parameters:
text
- Text that may contain placeholders to replace.renderConfig
- Render config to use for the replacement process.- Returns:
- The text with all placeholders replaced.
-
parseClientFormula
String parseClientFormula(String text, IXFormRenderConfig config)
-
-