Package com.aquima.web.ui.mvc
Class MvcUiConfiguration
- java.lang.Object
-
- com.aquima.web.ui.mvc.MvcUiConfiguration
-
public class MvcUiConfiguration extends Object
This class represents the configuration of the Mvc UI.- Since:
- 9.2
- Author:
- A.Pragt
-
-
Constructor Summary
Constructors Constructor Description MvcUiConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addTheme(MvcThemeConfiguration theme)
Adds a theme to the configuration.List<MvcThemeConfiguration>
getThemes()
Returns all configured themes.boolean
isDevelopmentMode()
Returns an indicator for the development mode.void
setDevelopmentMode(boolean developmentMode)
Sets the development mode.
-
-
-
Method Detail
-
isDevelopmentMode
public boolean isDevelopmentMode()
Returns an indicator for the development mode.- Returns:
- Development mode indicator.
-
setDevelopmentMode
public void setDevelopmentMode(boolean developmentMode)
Sets the development mode.- Parameters:
developmentMode
-
-
getThemes
public List<MvcThemeConfiguration> getThemes()
Returns all configured themes.- Returns:
- All configured themes, never null.
-
addTheme
public void addTheme(MvcThemeConfiguration theme)
Adds a theme to the configuration.- Parameters:
theme
- Theme configuration, not null.
-
-