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