-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutput.java
More file actions
34 lines (25 loc) · 742 Bytes
/
output.java
File metadata and controls
34 lines (25 loc) · 742 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
package com.example.webscrapping;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.lang.reflect.Array;
import java.util.List;
public class output {
@SerializedName("content")
@Expose
private List<String> content = null;
@SerializedName("keywords")
@Expose
private List<String> keywords = null;
public List<String> getContent() {
return content;
}
public void setContent(List<String> content) {
this.content = content;
}
public List<String> getKeywords() {
return keywords;
}
public void setKeywords(List<String> keywords) {
this.keywords = keywords;
}
}