Package org.silverpeas.core.web.look
Interface LayoutConfiguration
-
- All Known Implementing Classes:
DefaultLayoutConfiguration
public interface LayoutConfiguration
- Author:
- Nicolas Eysseric
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBodyNavigationURL()
Gets the URL of the body navigation part of the layout in order to load the body navigation content.String
getBodyURL()
Gets the URL of the body part of the layout in order to load the body content.String
getHeaderURL()
Gets the URL of the header part of the layout in order to load the header content.boolean
isBodyNavigationFade()
boolean
isHeaderToggleFade()
-
-
-
Method Detail
-
getHeaderURL
String getHeaderURL()
Gets the URL of the header part of the layout in order to load the header content.- Returns:
- a string representing the URL into the application context.
-
isHeaderToggleFade
boolean isHeaderToggleFade()
- Returns:
- true if a fade out MUST be applied on the header part when toggling its display.
-
getBodyURL
String getBodyURL()
Gets the URL of the body part of the layout in order to load the body content.- Returns:
- a string representing the URL into the application context.
-
getBodyNavigationURL
String getBodyNavigationURL()
Gets the URL of the body navigation part of the layout in order to load the body navigation content.- Returns:
- a string representing the URL into the application context.
-
isBodyNavigationFade
boolean isBodyNavigationFade()
- Returns:
- true if a fade out MUST be applied on the header part when toggling its display.
-
-