001    /**
002     * Copyright (c) 2000-2010 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.portlet.journal.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link JournalContentSearch}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       JournalContentSearch
024     * @generated
025     */
026    public class JournalContentSearchWrapper implements JournalContentSearch {
027            public JournalContentSearchWrapper(
028                    JournalContentSearch journalContentSearch) {
029                    _journalContentSearch = journalContentSearch;
030            }
031    
032            public long getPrimaryKey() {
033                    return _journalContentSearch.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _journalContentSearch.setPrimaryKey(pk);
038            }
039    
040            public long getContentSearchId() {
041                    return _journalContentSearch.getContentSearchId();
042            }
043    
044            public void setContentSearchId(long contentSearchId) {
045                    _journalContentSearch.setContentSearchId(contentSearchId);
046            }
047    
048            public long getGroupId() {
049                    return _journalContentSearch.getGroupId();
050            }
051    
052            public void setGroupId(long groupId) {
053                    _journalContentSearch.setGroupId(groupId);
054            }
055    
056            public long getCompanyId() {
057                    return _journalContentSearch.getCompanyId();
058            }
059    
060            public void setCompanyId(long companyId) {
061                    _journalContentSearch.setCompanyId(companyId);
062            }
063    
064            public boolean getPrivateLayout() {
065                    return _journalContentSearch.getPrivateLayout();
066            }
067    
068            public boolean isPrivateLayout() {
069                    return _journalContentSearch.isPrivateLayout();
070            }
071    
072            public void setPrivateLayout(boolean privateLayout) {
073                    _journalContentSearch.setPrivateLayout(privateLayout);
074            }
075    
076            public long getLayoutId() {
077                    return _journalContentSearch.getLayoutId();
078            }
079    
080            public void setLayoutId(long layoutId) {
081                    _journalContentSearch.setLayoutId(layoutId);
082            }
083    
084            public java.lang.String getPortletId() {
085                    return _journalContentSearch.getPortletId();
086            }
087    
088            public void setPortletId(java.lang.String portletId) {
089                    _journalContentSearch.setPortletId(portletId);
090            }
091    
092            public java.lang.String getArticleId() {
093                    return _journalContentSearch.getArticleId();
094            }
095    
096            public void setArticleId(java.lang.String articleId) {
097                    _journalContentSearch.setArticleId(articleId);
098            }
099    
100            public com.liferay.portlet.journal.model.JournalContentSearch toEscapedModel() {
101                    return _journalContentSearch.toEscapedModel();
102            }
103    
104            public boolean isNew() {
105                    return _journalContentSearch.isNew();
106            }
107    
108            public void setNew(boolean n) {
109                    _journalContentSearch.setNew(n);
110            }
111    
112            public boolean isCachedModel() {
113                    return _journalContentSearch.isCachedModel();
114            }
115    
116            public void setCachedModel(boolean cachedModel) {
117                    _journalContentSearch.setCachedModel(cachedModel);
118            }
119    
120            public boolean isEscapedModel() {
121                    return _journalContentSearch.isEscapedModel();
122            }
123    
124            public void setEscapedModel(boolean escapedModel) {
125                    _journalContentSearch.setEscapedModel(escapedModel);
126            }
127    
128            public java.io.Serializable getPrimaryKeyObj() {
129                    return _journalContentSearch.getPrimaryKeyObj();
130            }
131    
132            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
133                    return _journalContentSearch.getExpandoBridge();
134            }
135    
136            public void setExpandoBridgeAttributes(
137                    com.liferay.portal.service.ServiceContext serviceContext) {
138                    _journalContentSearch.setExpandoBridgeAttributes(serviceContext);
139            }
140    
141            public java.lang.Object clone() {
142                    return _journalContentSearch.clone();
143            }
144    
145            public int compareTo(
146                    com.liferay.portlet.journal.model.JournalContentSearch journalContentSearch) {
147                    return _journalContentSearch.compareTo(journalContentSearch);
148            }
149    
150            public int hashCode() {
151                    return _journalContentSearch.hashCode();
152            }
153    
154            public java.lang.String toString() {
155                    return _journalContentSearch.toString();
156            }
157    
158            public java.lang.String toXmlString() {
159                    return _journalContentSearch.toXmlString();
160            }
161    
162            public JournalContentSearch getWrappedJournalContentSearch() {
163                    return _journalContentSearch;
164            }
165    
166            private JournalContentSearch _journalContentSearch;
167    }