Back to project page ildn-hub.
The source code is released under:
GNU General Public License
If you think the Android project ildn-hub listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.ildn; //w ww. j av a 2 s .c om public class NewsItemRow { private String creatore = ""; private String datapub = ""; private String title = ""; private String description = ""; public void setCreatore(String a) { this.creatore = a.trim(); } /** * @return the datapub */ public String getDatapub() { return datapub; } /** * @param datapub * the datapub to set */ public void setDatapub(String datapub) { this.datapub = datapub; } /** * @return the title */ public String getTitle() { return title; } /** * @param title * the title to set */ public void setTitle(String title) { this.title = title; } /** * @return the description */ public String getDescription() { return description; } /** * @param description * the description to set */ public void setDescription(String description) { this.description = description; } /** * @return the creatore */ public String getCreatore() { return creatore; } }