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 getTypeSettings();
060    
061            public com.liferay.portal.kernel.util.UnicodeProperties getTypeSettingsProperties();
062    
063            public com.liferay.portal.model.ColorScheme getWapColorScheme()
064                    throws com.liferay.portal.kernel.exception.PortalException,
065                            com.liferay.portal.kernel.exception.SystemException;
066    
067            public com.liferay.portal.model.Theme getWapTheme()
068                    throws com.liferay.portal.kernel.exception.PortalException,
069                            com.liferay.portal.kernel.exception.SystemException;
070    
071            public boolean hasChildren()
072                    throws com.liferay.portal.kernel.exception.SystemException;
073    
074            public boolean isInheritLookAndFeel();
075    
076            public boolean isInheritWapLookAndFeel();
077    
078            public void setTypeSettings(java.lang.String typeSettings);
079    
080            public void setTypeSettingsProperties(
081                    com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties);
082    }