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.
45 lines
1.4 KiB
45 lines
1.4 KiB
package model;
|
|
|
|
public class Paper {
|
|
private String title;
|
|
private String authors;
|
|
private String abstractText;
|
|
private String url;
|
|
private String platform;
|
|
|
|
public Paper() {
|
|
}
|
|
|
|
public Paper(String title, String authors, String abstractText, String url, String platform) {
|
|
this.title = title;
|
|
this.authors = authors;
|
|
this.abstractText = abstractText;
|
|
this.url = url;
|
|
this.platform = platform;
|
|
}
|
|
|
|
public String getTitle() { return title; }
|
|
public void setTitle(String title) { this.title = title; }
|
|
|
|
public String getAuthors() { return authors; }
|
|
public void setAuthors(String authors) { this.authors = authors; }
|
|
|
|
public String getAbstractText() { return abstractText; }
|
|
public void setAbstractText(String abstractText) { this.abstractText = abstractText; }
|
|
|
|
public String getUrl() { return url; }
|
|
public void setUrl(String url) { this.url = url; }
|
|
|
|
public String getPlatform() { return platform; }
|
|
public void setPlatform(String platform) { this.platform = platform; }
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "Paper{" +
|
|
"title='" + title + '\'' +
|
|
", authors='" + authors + '\'' +
|
|
", url='" + url + '\'' +
|
|
", platform='" + platform + '\'' +
|
|
'}';
|
|
}
|
|
}
|