001
014
015 package com.liferay.portal.model;
016
017
026 public interface LayoutRevision extends LayoutRevisionModel, PersistedModel {
027
032 public java.util.List<com.liferay.portal.model.LayoutRevision> getChildren()
033 throws com.liferay.portal.kernel.exception.SystemException;
034
035 public com.liferay.portal.model.ColorScheme getColorScheme()
036 throws com.liferay.portal.kernel.exception.PortalException,
037 com.liferay.portal.kernel.exception.SystemException;
038
039 public java.lang.String getCssText()
040 throws com.liferay.portal.kernel.exception.PortalException,
041 com.liferay.portal.kernel.exception.SystemException;
042
043 public java.lang.String getHTMLTitle(java.util.Locale locale);
044
045 public java.lang.String getHTMLTitle(java.lang.String localeLanguageId);
046
047 public com.liferay.portal.model.LayoutBranch getLayoutBranch()
048 throws com.liferay.portal.kernel.exception.PortalException,
049 com.liferay.portal.kernel.exception.SystemException;
050
051 public com.liferay.portal.model.LayoutSet getLayoutSet()
052 throws com.liferay.portal.kernel.exception.PortalException,
053 com.liferay.portal.kernel.exception.SystemException;
054
055 public java.lang.String getRegularURL(
056 javax.servlet.http.HttpServletRequest request)
057 throws com.liferay.portal.kernel.exception.PortalException,
058 com.liferay.portal.kernel.exception.SystemException;
059
060 public com.liferay.portal.model.Theme getTheme()
061 throws com.liferay.portal.kernel.exception.PortalException,
062 com.liferay.portal.kernel.exception.SystemException;
063
064 public java.lang.String getThemeSetting(java.lang.String key,
065 java.lang.String device);
066
067 public com.liferay.portal.kernel.util.UnicodeProperties getTypeSettingsProperties();
068
069 public com.liferay.portal.model.ColorScheme getWapColorScheme()
070 throws com.liferay.portal.kernel.exception.PortalException,
071 com.liferay.portal.kernel.exception.SystemException;
072
073 public com.liferay.portal.model.Theme getWapTheme()
074 throws com.liferay.portal.kernel.exception.PortalException,
075 com.liferay.portal.kernel.exception.SystemException;
076
077 public boolean hasChildren()
078 throws com.liferay.portal.kernel.exception.SystemException;
079
080 public boolean isContentDisplayPage();
081
082 public boolean isInheritLookAndFeel();
083
084 public boolean isInheritWapLookAndFeel();
085
086 public void setTypeSettingsProperties(
087 com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties);
088 }