Package com.storedobject.ui.util
Interface HtmlTemplate.StyleSupplier
- Enclosing class:
HtmlTemplate
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents a supplier functional interface for providing style information.
This interface is primarily designed to encapsulate the retrieval of style
details, allowing flexibility and reusability in components or templates
where style information needs to be dynamically supplied.
This interface is typically used in conjunction with HTML or other template-based
systems that incorporate style information during rendering or processing stages.
Implementations should provide a concrete mechanism to supply the style as a string.
- Author:
- Syam
-
Method Summary
-
Method Details
-
getStyle
String getStyle()Retrieves the style information as a string. This method is intended to provide dynamic style content for use in rendering or processing styles in templating systems or similar use cases.- Returns:
- the style information as a string
-