Skip to content

Instantly share code, notes, and snippets.

@babedev
Created January 5, 2017 08:47
Show Gist options
  • Save babedev/47a2ae7bfae8fcc464a567ce5595f695 to your computer and use it in GitHub Desktop.
Save babedev/47a2ae7bfae8fcc464a567ce5595f695 to your computer and use it in GitHub Desktop.
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