Package lumis.portal.theme
Interface ITheme
-
- All Known Subinterfaces:
IThemeSPI
public interface ITheme
A LumisXP theme.- Since:
- 7.0.0
- Version:
- $Revision: 22420 $ $Date: 2019-02-19 16:21:02 -0300 (Tue, 19 Feb 2019) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDescription()
Returns the description of this theme.java.lang.String
getId()
Returns the identifier of this theme.java.lang.String
getLocalizedDescription()
Returns the localized description (using the current user's session locale or the portal's default locale).java.lang.String
getLocalizedName()
Returns the localized name (using the current user's session locale or the portal's default locale).java.lang.String
getName()
Returns the name of this theme.OpenRuntimeInterfaceBehavior
getOpenRuntimeInterfaceWithActiveParentBehavior()
Returns the default open runtime interface behavior set for this theme when the runtime interface needs the parent interface to be kept active.OpenRuntimeInterfaceBehavior
getOpenRuntimeInterfaceWithoutActiveParentBehavior()
Returns the default open runtime interface behavior set for this theme.
-
-
-
Method Detail
-
getId
java.lang.String getId()
Returns the identifier of this theme.- Returns:
- the identifier.
- Since:
- 7.0.0
-
getName
java.lang.String getName()
Returns the name of this theme.- Returns:
- the name, which may be a localizable string using this theme's string resource, or a simple non-localizable string.
- Since:
- 7.0.0
-
getLocalizedName
java.lang.String getLocalizedName()
Returns the localized name (using the current user's session locale or the portal's default locale).- Returns:
- the localized name (using the current user's session locale or the portal's default locale).
- Since:
- 7.0.0
-
getDescription
java.lang.String getDescription()
Returns the description of this theme.- Returns:
- the description, which may be a localizable string using this theme's
string resource, or a simple non-localizable string, or
null
if this theme has no description set. - Since:
- 7.0.0
-
getLocalizedDescription
java.lang.String getLocalizedDescription()
Returns the localized description (using the current user's session locale or the portal's default locale).- Returns:
- the localized description (using the current user's session locale or the portal's default locale).
- Since:
- 7.0.0
-
getOpenRuntimeInterfaceWithoutActiveParentBehavior
OpenRuntimeInterfaceBehavior getOpenRuntimeInterfaceWithoutActiveParentBehavior()
Returns the default open runtime interface behavior set for this theme.- Returns:
- the behavior selected for this theme, or
null
if no specific behavior was selected for this theme. - Since:
- 7.0.0
-
getOpenRuntimeInterfaceWithActiveParentBehavior
OpenRuntimeInterfaceBehavior getOpenRuntimeInterfaceWithActiveParentBehavior()
Returns the default open runtime interface behavior set for this theme when the runtime interface needs the parent interface to be kept active.- Returns:
- the behavior selected for this theme, or
null
if no specific behavior was selected for this theme. - Since:
- 7.0.0
-
-