Tabbean.java
6.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
package com.cnlive.goldenline.model;
import android.os.Parcel;
import android.os.Parcelable;
import android.support.annotation.NonNull;
import java.io.Serializable;
/**
* Created by Administrator on 2017/1/16.
*/
public class Tabbean implements Serializable, Parcelable {
private int id;
private String tabDesc;
private String tabFontCorlorDefault;
private int tabFontColorDefRes;
private String tabFontCorlorSel;
private int tabFontColorSelRes;
private String tabImg;
private String tabImgSel;
private int tabImgRes;
private int tabImgSelRes;
private String tabName;
private int tabSort;
private int tabType;
public Tabbean() {
}
public Tabbean(int id, String tabDesc, String tabFontCorlorDefault, String tabFontCorlorSel, String tabImg, String tabImgSel, String tabName, int tabSort, int tabType) {
this.id = id;
this.tabDesc = tabDesc;
this.tabFontCorlorDefault = tabFontCorlorDefault;
this.tabFontCorlorSel = tabFontCorlorSel;
this.tabImg = tabImg;
this.tabImgSel = tabImgSel;
this.tabName = tabName;
this.tabSort = tabSort;
this.tabType = tabType;
}
public Tabbean(int id, String tabDesc, String tabFontCorlorDefault, String tabFontCorlorSel, int tabImgRes, int tabImgSelRes, String tabName, int tabSort, int tabType) {
this.id = id;
this.tabDesc = tabDesc;
this.tabFontCorlorDefault = tabFontCorlorDefault;
this.tabFontCorlorSel = tabFontCorlorSel;
this.tabImgRes = tabImgRes;
this.tabImgSelRes = tabImgSelRes;
this.tabName = tabName;
this.tabSort = tabSort;
this.tabType = tabType;
}
public Tabbean(int id, String tabDesc, String tabFontCorlorDefault, int tabFontColorDefRes, String tabFontCorlorSel, int tabFontColorSelRes, String tabImg, String tabImgSel, int tabImgRes, int tabImgSelRes, String tabName, int tabSort, int tabType) {
this.id = id;
this.tabDesc = tabDesc;
this.tabFontCorlorDefault = tabFontCorlorDefault;
this.tabFontColorDefRes = tabFontColorDefRes;
this.tabFontCorlorSel = tabFontCorlorSel;
this.tabFontColorSelRes = tabFontColorSelRes;
this.tabImg = tabImg;
this.tabImgSel = tabImgSel;
this.tabImgRes = tabImgRes;
this.tabImgSelRes = tabImgSelRes;
this.tabName = tabName;
this.tabSort = tabSort;
this.tabType = tabType;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getTabDesc() {
return tabDesc;
}
public void setTabDesc(String tabDesc) {
this.tabDesc = tabDesc;
}
public String getTabFontCorlorDefault() {
return tabFontCorlorDefault;
}
public int getTabFontColorDefRes() {
return tabFontColorDefRes;
}
public void setTabFontColorDefRes(int tabFontColorDefRes) {
this.tabFontColorDefRes = tabFontColorDefRes;
}
public int getTabFontColorSelRes() {
return tabFontColorSelRes;
}
public void setTabFontColorSelRes(int tabFontColorSelRes) {
this.tabFontColorSelRes = tabFontColorSelRes;
}
public void setTabFontCorlorDefault(String tabFontCorlorDefault) {
this.tabFontCorlorDefault = tabFontCorlorDefault;
}
public String getTabFontCorlorSel() {
return tabFontCorlorSel;
}
public void setTabFontCorlorSel(String tabFontCorlorSel) {
this.tabFontCorlorSel = tabFontCorlorSel;
}
public String getTabImg() {
return tabImg;
}
public void setTabImg(String tabImg) {
this.tabImg = tabImg;
}
public String getTabImgSel() {
return tabImgSel;
}
public void setTabImgSel(String tabImgSel) {
this.tabImgSel = tabImgSel;
}
public String getTabName() {
return tabName;
}
public void setTabName(String tabName) {
this.tabName = tabName;
}
public int getTabSort() {
return tabSort;
}
public void setTabSort(int tabSort) {
this.tabSort = tabSort;
}
public int getTabType() {
return tabType;
}
public void setTabType(int tabType) {
this.tabType = tabType;
}
public int getTabImgRes() {
return tabImgRes;
}
public void setTabImgRes(int tabImgRes) {
this.tabImgRes = tabImgRes;
}
public int getTabImgSelRes() {
return tabImgSelRes;
}
public void setTabImgSelRes(int tabImgSelRes) {
this.tabImgSelRes = tabImgSelRes;
}
@NonNull
@Override
public String toString() {
return "Tabbean{" +
"id=" + id +
", tabDesc='" + tabDesc + '\'' +
", tabFontCorlorDefault='" + tabFontCorlorDefault + '\'' +
", tabFontCorlorSel='" + tabFontCorlorSel + '\'' +
", tabImg='" + tabImg + '\'' +
", tabImgSel='" + tabImgSel + '\'' +
", tabImgRes=" + tabImgRes +
", tabImgSelRes=" + tabImgSelRes +
", tabName='" + tabName + '\'' +
", tabSort=" + tabSort +
", tabType=" + tabType +
'}';
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(@NonNull Parcel dest, int flags) {
dest.writeInt(this.id);
dest.writeString(this.tabDesc);
dest.writeString(this.tabFontCorlorDefault);
dest.writeInt(this.tabFontColorDefRes);
dest.writeString(this.tabFontCorlorSel);
dest.writeInt(this.tabFontColorSelRes);
dest.writeString(this.tabImg);
dest.writeString(this.tabImgSel);
dest.writeInt(this.tabImgRes);
dest.writeInt(this.tabImgSelRes);
dest.writeString(this.tabName);
dest.writeInt(this.tabSort);
dest.writeInt(this.tabType);
}
protected Tabbean(@NonNull Parcel in) {
this.id = in.readInt();
this.tabDesc = in.readString();
this.tabFontCorlorDefault = in.readString();
this.tabFontColorDefRes = in.readInt();
this.tabFontCorlorSel = in.readString();
this.tabFontColorSelRes = in.readInt();
this.tabImg = in.readString();
this.tabImgSel = in.readString();
this.tabImgRes = in.readInt();
this.tabImgSelRes = in.readInt();
this.tabName = in.readString();
this.tabSort = in.readInt();
this.tabType = in.readInt();
}
public static final Parcelable.Creator<Tabbean> CREATOR = new Parcelable.Creator<Tabbean>() {
@NonNull
@Override
public Tabbean createFromParcel(@NonNull Parcel source) {
return new Tabbean(source);
}
@NonNull
@Override
public Tabbean[] newArray(int size) {
return new Tabbean[size];
}
};
}