-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathData.java
More file actions
47 lines (36 loc) · 736 Bytes
/
Data.java
File metadata and controls
47 lines (36 loc) · 736 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
40
41
42
43
44
45
46
47
public class Data {
public String IP;
public String FILE;
public String RATING;
public String PORT;
public Data(String ip, String port, String file, String rating){
this.IP = ip;
this.FILE = file;
this.RATING = rating;
this.PORT = port;
}
public String getIp() {
return IP;
}
public String getPort() {
return PORT;
}
public String getFile() {
return FILE;
}
public String getRating() {
return RATING;
}
public void setIp(String ip) {
this.IP = ip;
}
public void setPort(String port) {
this.PORT = port;
}
public void setFile(String file) {
this.FILE = file;
}
public void setRating(String rating) {
this.RATING = rating;
}
}