Back to project page RoboBinding-gallery.
The source code is released under:
Apache License
If you think the Android project RoboBinding-gallery 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 org.robobinding.gallery.presentationmodel; /*w ww. j a v a2 s .co m*/ import org.robobinding.itempresentationmodel.ItemContext; import org.robobinding.itempresentationmodel.ItemPresentationModel; /** * @author Cheng Wei * @version $Revision: 1.0 $ * @since 1.0 */ public class ToStringItemPresentationModel implements ItemPresentationModel<Object> { private Object item; @Override public void updateData(Object item, ItemContext itemContext) { this.item = item; } public String getValue() { return item.toString(); } }