Skip to content

Instantly share code, notes, and snippets.

@jose-mgmaestre
Created April 16, 2018 13:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jose-mgmaestre/c1621cd47dc597472139c6334e27ce46 to your computer and use it in GitHub Desktop.
Save jose-mgmaestre/c1621cd47dc597472139c6334e27ce46 to your computer and use it in GitHub Desktop.
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Body body = createBody();
TextView bloodTV = findViewById(R.id.blood_tv);
bloodTV.setText("Kind of Blood: " + body.getBlood().getKindOfBlood());
}
private Body createBody() {
Doctor doctor = DaggerDoctor.create();
return doctor.injectBlood();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment