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