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 w w . j av a 2s . com import org.robobinding.itempresentationmodel.ItemContext; import org.robobinding.itempresentationmodel.ItemPresentationModel; /** * @author Cheng Wei * @version $Revision: 1.0 $ * @since 1.0 */ public class StringItemPresentationModel implements ItemPresentationModel<String> { private String value; @Override public void updateData(String bean, ItemContext itemContext) { value = bean; } public String getValue() { return value; } }