You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.1 KiB
61 lines
1.1 KiB
package com.jme3.gde.welcome.rss;
|
|
|
|
/**
|
|
*
|
|
* @author Lars Vogel
|
|
*/
|
|
public class FeedMessage {
|
|
|
|
String title;
|
|
String description;
|
|
String link;
|
|
String author;
|
|
String guid;
|
|
|
|
public String getTitle() {
|
|
return title;
|
|
}
|
|
|
|
public void setTitle(String title) {
|
|
this.title = title;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(String description) {
|
|
this.description = description;
|
|
}
|
|
|
|
public String getLink() {
|
|
return link;
|
|
}
|
|
|
|
public void setLink(String link) {
|
|
this.link = link;
|
|
}
|
|
|
|
public String getAuthor() {
|
|
return author;
|
|
}
|
|
|
|
public void setAuthor(String author) {
|
|
this.author = author;
|
|
}
|
|
|
|
public String getGuid() {
|
|
return guid;
|
|
}
|
|
|
|
public void setGuid(String guid) {
|
|
this.guid = guid;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "FeedMessage [title=" + title + ", description=" + description
|
|
+ ", link=" + link + ", author=" + author + ", guid=" + guid
|
|
+ "]";
|
|
}
|
|
}
|
|
|