001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model;
016    
017    /**
018     * The extended model interface for the LayoutRevision service. Represents a row in the "LayoutRevision" database table, with each column mapped to a property of this class.
019     *
020     * @author Brian Wing Shun Chan
021     * @see LayoutRevisionModel
022     * @see com.liferay.portal.model.impl.LayoutRevisionImpl
023     * @see com.liferay.portal.model.impl.LayoutRevisionModelImpl
024     * @generated
025     */
026    public interface LayoutRevision extends LayoutRevisionModel, PersistedModel {
027            /*
028             * NOTE FOR DEVELOPERS:
029             *
030             * Never modify this interface directly. Add methods to {@link com.liferay.portal.model.impl.LayoutRevisionImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
031             */
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 com.liferay.portal.model.Theme getTheme()
056                    throws com.liferay.portal.kernel.exception.PortalException,
057                            com.liferay.portal.kernel.exception.SystemException;
058    
059            public java.lang.String getThemeSetting(java.lang.String key,
060                    java.lang.String device);
061    
062            public com.liferay.portal.kernel.util.UnicodeProperties getTypeSettingsProperties();
063    
064            public com.liferay.portal.model.ColorScheme getWapColorScheme()
065                    throws com.liferay.portal.kernel.exception.PortalException,
066                            com.liferay.portal.kernel.exception.SystemException;
067    
068            public com.liferay.portal.model.Theme getWapTheme()
069                    throws com.liferay.portal.kernel.exception.PortalException,
070                            com.liferay.portal.kernel.exception.SystemException;
071    
072            public boolean hasChildren()
073                    throws com.liferay.portal.kernel.exception.SystemException;
074    
075            public boolean hasDefaultAssetPublisherPortletId();
076    
077            public boolean isInheritLookAndFeel();
078    
079            public boolean isInheritWapLookAndFeel();
080    
081            public void setTypeSettingsProperties(
082                    com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties);
083    }