Back to project page lastUpdates.
The source code is released under:
GNU General Public License
If you think the Android project lastUpdates 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.focusings.focusingsworld.ImageAndTextList; /*from w w w . j av a 2 s .c om*/ public class ImageAndText { private String imageUrl; private String text; private String url; public ImageAndText(String imageUrl, String text, String url) { this.imageUrl = imageUrl; this.text = text; this.url=url; } public String getImageUrl() { return imageUrl; } public String getText() { return text; } public String getUrl() { return url; } }