Back to project page robotronic.
The source code is released under:
Copyright (C) 2011 by Drew Schrauf Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the So...
If you think the Android project robotronic 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.drewschrauf.example.robotronic; /* ww w. ja va 2 s . co m*/ public class ExampleListItem { private String title; private String imageUrl; public ExampleListItem(String title, String imageUrl) { this.title = title; this.imageUrl = imageUrl; } public void setTitle(String title) { this.title = title; } public String getTitle() { return title; } public void setImageUrl(String imageUrl) { this.imageUrl = imageUrl; } public String getImageUrl() { return imageUrl; } }