Back to project page AndroidAdvancedDemos.
The source code is released under:
MIT License
If you think the Android project AndroidAdvancedDemos 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 com.krieger.training.androidadvanceddemos.entities; //from www . ja v a2 s .c o m public class ImageElement{ private String titulo = ""; private String url = ""; public ImageElement(String titulo, String url) { super(); this.titulo = titulo; this.url = url; } public String getTitulo(){ return this.titulo; } public String getUrl(){ return this.url; } public void setUrl(String url){ this.url=url; } public String getImage(){ return this.url; } }