Back to project page Android-CleanArchitecture.
The source code is released under:
Apache License
If you think the Android project Android-CleanArchitecture listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Copyright (C) 2014 android10.org. All rights reserved. * @author Fernando Cejas (the android10 coder) *//*from w w w . j av a 2s . co m*/ package com.fernandocejas.android10.sample.presentation.view; import com.fernandocejas.android10.sample.presentation.model.UserModel; /** * Interface representing a View in a model view presenter (MVP) pattern. * In this case is used as a view representing a user profile. */ public interface UserDetailsView extends LoadDataView { /** * Render a user in the UI. * * @param user The {@link UserModel} that will be shown. */ void renderUser(UserModel user); }