We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba5ca31 commit 8266a38Copy full SHA for 8266a38
1 file changed
com.example.android.rssfeed/src/com/example/android/rssfeed/RssItem.java
@@ -6,6 +6,14 @@ public class RssItem {
6
private String link;
7
private String title;
8
9
+ public RssItem() {
10
+ }
11
+
12
+ public RssItem(String title, String link) {
13
+ this.title = title;
14
+ this.link = link;
15
16
17
public String getPubDate() {
18
return pubDate;
19
}
0 commit comments