1
14
15 package com.liferay.portlet.tags.model;
16
17
33 public class TagsSourceWrapper implements TagsSource {
34 public TagsSourceWrapper(TagsSource tagsSource) {
35 _tagsSource = tagsSource;
36 }
37
38 public long getPrimaryKey() {
39 return _tagsSource.getPrimaryKey();
40 }
41
42 public void setPrimaryKey(long pk) {
43 _tagsSource.setPrimaryKey(pk);
44 }
45
46 public long getSourceId() {
47 return _tagsSource.getSourceId();
48 }
49
50 public void setSourceId(long sourceId) {
51 _tagsSource.setSourceId(sourceId);
52 }
53
54 public long getParentSourceId() {
55 return _tagsSource.getParentSourceId();
56 }
57
58 public void setParentSourceId(long parentSourceId) {
59 _tagsSource.setParentSourceId(parentSourceId);
60 }
61
62 public java.lang.String getName() {
63 return _tagsSource.getName();
64 }
65
66 public void setName(java.lang.String name) {
67 _tagsSource.setName(name);
68 }
69
70 public java.lang.String getAcronym() {
71 return _tagsSource.getAcronym();
72 }
73
74 public void setAcronym(java.lang.String acronym) {
75 _tagsSource.setAcronym(acronym);
76 }
77
78 public boolean isNew() {
79 return _tagsSource.isNew();
80 }
81
82 public boolean setNew(boolean n) {
83 return _tagsSource.setNew(n);
84 }
85
86 public boolean isCachedModel() {
87 return _tagsSource.isCachedModel();
88 }
89
90 public void setCachedModel(boolean cachedModel) {
91 _tagsSource.setCachedModel(cachedModel);
92 }
93
94 public boolean isEscapedModel() {
95 return _tagsSource.isEscapedModel();
96 }
97
98 public void setEscapedModel(boolean escapedModel) {
99 _tagsSource.setEscapedModel(escapedModel);
100 }
101
102 public java.io.Serializable getPrimaryKeyObj() {
103 return _tagsSource.getPrimaryKeyObj();
104 }
105
106 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
107 return _tagsSource.getExpandoBridge();
108 }
109
110 public void setExpandoBridgeAttributes(
111 com.liferay.portal.service.ServiceContext serviceContext) {
112 _tagsSource.setExpandoBridgeAttributes(serviceContext);
113 }
114
115 public java.lang.Object clone() {
116 return _tagsSource.clone();
117 }
118
119 public int compareTo(com.liferay.portlet.tags.model.TagsSource tagsSource) {
120 return _tagsSource.compareTo(tagsSource);
121 }
122
123 public int hashCode() {
124 return _tagsSource.hashCode();
125 }
126
127 public com.liferay.portlet.tags.model.TagsSource toEscapedModel() {
128 return _tagsSource.toEscapedModel();
129 }
130
131 public java.lang.String toString() {
132 return _tagsSource.toString();
133 }
134
135 public java.lang.String toXmlString() {
136 return _tagsSource.toXmlString();
137 }
138
139 public TagsSource getWrappedTagsSource() {
140 return _tagsSource;
141 }
142
143 private TagsSource _tagsSource;
144 }