Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1.  
  2. PrimitiveContractor
  3.  
  4. Tomasz Knapp
  5. do:
  6. Karol Wiśniewski
  7. 22.06.2018 13:28
  8.  
  9.  
  10.  
  11.  
  12. /*
  13. * Constructors
  14. */
  15.  
  16. protected PrimitiveContractor() {
  17.  
  18. }
  19.  
  20. protected PrimitiveContractor(PrimitiveDocument primitiveDocument) {
  21. this.setPrimitiveDocument(primitiveDocument);
  22. }
  23.  
  24.  
  25. /*
  26. * Getters/Setters
  27. */
  28.  
  29. public void setPrimitiveDocument(PrimitiveDocument primitiveDocument) {
  30. this.primitiveDocument = primitiveDocument;
  31. }
  32. public PrimitiveDocument getPrimitiveDocument() {
  33. return(this.primitiveDocument);
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement