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; /*from www.ja v a2 s .c o m*/ import org.robobinding.annotation.PresentationModel; /** * @author Cheng Wei * @version $Revision: 1.0 $ * @since 1.0 */ @PresentationModel public class EditTextPresentationModel { private String text; public String getText() { return text; } public void setText(String text) { this.text = text; } }