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 w ww .j a v a2 s.c om import org.robobinding.annotation.PresentationModel; import org.robobinding.gallery.model.Product; /** * @author Cheng Wei * @version $Revision: 1.0 $ * @since 1.0 */ @PresentationModel public class FragmentDemoPresentationModel { private Product product; public FragmentDemoPresentationModel(Product product) { this.product = product; } public String getProductName() { return product.getName(); } public String getProductDescription() { return product.getDescription(); } }