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.wiki.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link WikiPageResource}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       WikiPageResource
024     * @generated
025     */
026    public class WikiPageResourceWrapper implements WikiPageResource {
027            public WikiPageResourceWrapper(WikiPageResource wikiPageResource) {
028                    _wikiPageResource = wikiPageResource;
029            }
030    
031            public long getPrimaryKey() {
032                    return _wikiPageResource.getPrimaryKey();
033            }
034    
035            public void setPrimaryKey(long pk) {
036                    _wikiPageResource.setPrimaryKey(pk);
037            }
038    
039            public java.lang.String getUuid() {
040                    return _wikiPageResource.getUuid();
041            }
042    
043            public void setUuid(java.lang.String uuid) {
044                    _wikiPageResource.setUuid(uuid);
045            }
046    
047            public long getResourcePrimKey() {
048                    return _wikiPageResource.getResourcePrimKey();
049            }
050    
051            public void setResourcePrimKey(long resourcePrimKey) {
052                    _wikiPageResource.setResourcePrimKey(resourcePrimKey);
053            }
054    
055            public long getNodeId() {
056                    return _wikiPageResource.getNodeId();
057            }
058    
059            public void setNodeId(long nodeId) {
060                    _wikiPageResource.setNodeId(nodeId);
061            }
062    
063            public java.lang.String getTitle() {
064                    return _wikiPageResource.getTitle();
065            }
066    
067            public void setTitle(java.lang.String title) {
068                    _wikiPageResource.setTitle(title);
069            }
070    
071            public com.liferay.portlet.wiki.model.WikiPageResource toEscapedModel() {
072                    return _wikiPageResource.toEscapedModel();
073            }
074    
075            public boolean isNew() {
076                    return _wikiPageResource.isNew();
077            }
078    
079            public void setNew(boolean n) {
080                    _wikiPageResource.setNew(n);
081            }
082    
083            public boolean isCachedModel() {
084                    return _wikiPageResource.isCachedModel();
085            }
086    
087            public void setCachedModel(boolean cachedModel) {
088                    _wikiPageResource.setCachedModel(cachedModel);
089            }
090    
091            public boolean isEscapedModel() {
092                    return _wikiPageResource.isEscapedModel();
093            }
094    
095            public void setEscapedModel(boolean escapedModel) {
096                    _wikiPageResource.setEscapedModel(escapedModel);
097            }
098    
099            public java.io.Serializable getPrimaryKeyObj() {
100                    return _wikiPageResource.getPrimaryKeyObj();
101            }
102    
103            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
104                    return _wikiPageResource.getExpandoBridge();
105            }
106    
107            public void setExpandoBridgeAttributes(
108                    com.liferay.portal.service.ServiceContext serviceContext) {
109                    _wikiPageResource.setExpandoBridgeAttributes(serviceContext);
110            }
111    
112            public java.lang.Object clone() {
113                    return _wikiPageResource.clone();
114            }
115    
116            public int compareTo(
117                    com.liferay.portlet.wiki.model.WikiPageResource wikiPageResource) {
118                    return _wikiPageResource.compareTo(wikiPageResource);
119            }
120    
121            public int hashCode() {
122                    return _wikiPageResource.hashCode();
123            }
124    
125            public java.lang.String toString() {
126                    return _wikiPageResource.toString();
127            }
128    
129            public java.lang.String toXmlString() {
130                    return _wikiPageResource.toXmlString();
131            }
132    
133            public WikiPageResource getWrappedWikiPageResource() {
134                    return _wikiPageResource;
135            }
136    
137            private WikiPageResource _wikiPageResource;
138    }