1
22
23 package com.liferay.portal.model;
24
25
26
42 public class ListTypeWrapper implements ListType {
43 public ListTypeWrapper(ListType listType) {
44 _listType = listType;
45 }
46
47 public int getPrimaryKey() {
48 return _listType.getPrimaryKey();
49 }
50
51 public void setPrimaryKey(int pk) {
52 _listType.setPrimaryKey(pk);
53 }
54
55 public int getListTypeId() {
56 return _listType.getListTypeId();
57 }
58
59 public void setListTypeId(int listTypeId) {
60 _listType.setListTypeId(listTypeId);
61 }
62
63 public java.lang.String getName() {
64 return _listType.getName();
65 }
66
67 public void setName(java.lang.String name) {
68 _listType.setName(name);
69 }
70
71 public java.lang.String getType() {
72 return _listType.getType();
73 }
74
75 public void setType(java.lang.String type) {
76 _listType.setType(type);
77 }
78
79 public com.liferay.portal.model.ListType toEscapedModel() {
80 return _listType.toEscapedModel();
81 }
82
83 public boolean isNew() {
84 return _listType.isNew();
85 }
86
87 public boolean setNew(boolean n) {
88 return _listType.setNew(n);
89 }
90
91 public boolean isCachedModel() {
92 return _listType.isCachedModel();
93 }
94
95 public void setCachedModel(boolean cachedModel) {
96 _listType.setCachedModel(cachedModel);
97 }
98
99 public boolean isEscapedModel() {
100 return _listType.isEscapedModel();
101 }
102
103 public void setEscapedModel(boolean escapedModel) {
104 _listType.setEscapedModel(escapedModel);
105 }
106
107 public java.io.Serializable getPrimaryKeyObj() {
108 return _listType.getPrimaryKeyObj();
109 }
110
111 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
112 return _listType.getExpandoBridge();
113 }
114
115 public void setExpandoBridgeAttributes(
116 com.liferay.portal.service.ServiceContext serviceContext) {
117 _listType.setExpandoBridgeAttributes(serviceContext);
118 }
119
120 public java.lang.Object clone() {
121 return _listType.clone();
122 }
123
124 public int compareTo(com.liferay.portal.model.ListType listType) {
125 return _listType.compareTo(listType);
126 }
127
128 public int hashCode() {
129 return _listType.hashCode();
130 }
131
132 public java.lang.String toString() {
133 return _listType.toString();
134 }
135
136 public java.lang.String toXmlString() {
137 return _listType.toXmlString();
138 }
139
140 public ListType getWrappedListType() {
141 return _listType;
142 }
143
144 private ListType _listType;
145 }