Skip to content

Instantly share code, notes, and snippets.

@jose-mgmaestre
Created April 13, 2018 15:35
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/0986d1f9305b1bd8b651e19e220edd9e to your computer and use it in GitHub Desktop.
Save jose-mgmaestre/0986d1f9305b1bd8b651e19e220edd9e to your computer and use it in GitHub Desktop.
Body with Blood
public class Body {
@Inject
Blood blood;
@Inject
public Body(){}
public Blood getBlood() {
return blood;
}
public void setBlood(Blood blood) {
this.blood = blood;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment