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