BSUser.java
3.88 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
package com.bitstrips.imoji.models;
import com.google.gson.annotations.SerializedName;
import java.util.Locale;
public class BSUser
{
@SerializedName("firstName")
String a;
@SerializedName("lastName")
String b;
@SerializedName("email")
String c;
@SerializedName("password")
String d;
@SerializedName("appName")
String e;
@SerializedName("birthday")
String f;
public BSUser() {}
public BSUser(String paramString1, String paramString2, String paramString3, String paramString4, String paramString5)
{
this.a = paramString1;
this.b = paramString2;
this.c = paramString3;
this.d = paramString4;
this.e = paramString5;
}
public boolean equals(Object paramObject)
{
if (this == paramObject) {}
do
{
return true;
if (!(paramObject instanceof BSUser)) {
return false;
}
paramObject = (BSUser)paramObject;
if (this.c != null)
{
if (this.c.equals(((BSUser)paramObject).c)) {}
}
else {
while (((BSUser)paramObject).c != null) {
return false;
}
}
if (this.a != null)
{
if (this.a.equals(((BSUser)paramObject).a)) {}
}
else {
while (((BSUser)paramObject).a != null) {
return false;
}
}
if (this.b != null)
{
if (this.b.equals(((BSUser)paramObject).b)) {}
}
else {
while (((BSUser)paramObject).b != null) {
return false;
}
}
if (this.d != null)
{
if (this.d.equals(((BSUser)paramObject).d)) {}
}
else {
while (((BSUser)paramObject).d != null) {
return false;
}
}
if (this.e != null)
{
if (this.e.equals(((BSUser)paramObject).e)) {}
}
else {
while (((BSUser)paramObject).e != null) {
return false;
}
}
if (this.f == null) {
break;
}
} while (this.f.equals(((BSUser)paramObject).f));
for (;;)
{
return false;
if (((BSUser)paramObject).f == null) {
break;
}
}
}
public String getEmail()
{
return this.c;
}
public String getPassword()
{
return this.d;
}
public int hashCode()
{
int i1 = 0;
int i;
int j;
label33:
int k;
label48:
int m;
if (this.a != null)
{
i = this.a.hashCode();
if (this.b == null) {
break label131;
}
j = this.b.hashCode();
if (this.c == null) {
break label136;
}
k = this.c.hashCode();
if (this.d == null) {
break label141;
}
m = this.d.hashCode();
label64:
if (this.e == null) {
break label147;
}
}
label131:
label136:
label141:
label147:
for (int n = this.e.hashCode();; n = 0)
{
if (this.f != null) {
i1 = this.f.hashCode();
}
return (n + (m + (k + (j + i * 31) * 31) * 31) * 31) * 31 + i1;
i = 0;
break;
j = 0;
break label33;
k = 0;
break label48;
m = 0;
break label64;
}
}
public void setAppName(String paramString)
{
this.e = paramString;
}
public void setBirthday(String paramString)
{
this.f = paramString;
}
public void setEmail(String paramString)
{
this.c = paramString;
}
public void setFirstName(String paramString)
{
this.a = paramString;
}
public void setLastName(String paramString)
{
this.b = paramString;
}
public void setPassword(String paramString)
{
this.d = paramString;
}
public String toString()
{
return String.format(Locale.US, "%s %s - %s", new Object[] { this.a, this.b, this.c });
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/bitstrips/imoji/models/BSUser.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/