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