-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathUser.java
More file actions
39 lines (30 loc) · 877 Bytes
/
User.java
File metadata and controls
39 lines (30 loc) · 877 Bytes
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
package com.example.dell.twitter;
/**
* Created by dell on 7/7/2017.
*/
public class User {
String name,profile_image_url_https,user_id;
public User(String name, String profile_image_url_https, String user_id) {
this.name = name;
this.profile_image_url_https = profile_image_url_https;
this.user_id = user_id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getProfile_image_url_https() {
return profile_image_url_https;
}
public void setProfile_image_url_https(String profile_image_url_https) {
this.profile_image_url_https = profile_image_url_https;
}
public String getUser_id() {
return user_id;
}
public void setUser_id(String user_id) {
this.user_id = user_id;
}
}