Back to project page YOW2014-Android-MVVM.
The source code is released under:
MIT License
If you think the Android project YOW2014-Android-MVVM 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.adilmughal.demo.yow.mvvm.searchd.viewmodel; //from w ww. j a v a2 s .c o m import org.robobinding.itempresentationmodel.ItemPresentationModel; import org.robobinding.presentationmodel.AbstractPresentationModel; public class StringItemPresentationModel extends AbstractPresentationModel implements ItemPresentationModel<String> { private String value; @Override public void updateData(int index, String bean) { value = bean; } public String getValue() { return value; } }