Guest User

Untitled

a guest
Jul 16th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public abstract class Body {
  2. protected Base base;
  3.  
  4. public void setBase(Base base) {
  5. this.base = base;
  6. }
  7.  
  8. public Base getBase() {
  9. return base;
  10. }
  11. }
Add Comment
Please, Sign In to add comment