Created
January 5, 2017 08:47
-
-
Save babedev/47a2ae7bfae8fcc464a567ce5595f695 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.babedev.javapoetcodelab.sample; | |
class SamplePresenter { | |
private SampleView mView; | |
/** | |
* Attach View | |
*/ | |
void attachView(SampleView view) { | |
mView = view; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment