Back to project page RoboBinding-album-sample.
The source code is released under:
Apache License
If you think the Android project RoboBinding-album-sample 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.albumsample.presentationmodel; /*from w w w . ja v a 2s. c o m*/ import org.robobinding.annotation.PresentationModel; /** * @author Cheng Wei * @author Robert Taylor * @since 1.0 */ @PresentationModel public class HomePresentationModel { private final HomeView view; public HomePresentationModel(HomeView view) { this.view = view; } public void albums() { view.showAlbums(); } }