Interface IPluginFormThemeRetVal
-
- All Known Implementing Classes:
DefaultPluginFormThemeRetVal
public interface IPluginFormThemeRetVal
Interface for the value returned byIPluginFormTheme
. Contains the themes that the plugin provides.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,IFormTheme>
getThemesById()
Gets the form themes that the plugin provides for the given parameters.
-
-
-
Method Detail
-
getThemesById
Map<String,IFormTheme> getThemesById()
Gets the form themes that the plugin provides for the given parameters. The key is the ID of the form theme and is used to identify the theme amongst all themes returned by the plugin. This ID must be unique only amongst the themes returned by an individualIPluginFormTheme
instance. Different plugin could in principle return themes with the same ID.- Returns:
- A map with all available form themes.
-
-