Advertisement
xtam4

Untitled

Apr 21st, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. @Override
  2. public String toString() {
  3. return "Product:" +
  4. "id:" + id +
  5. ", name:'" + name + '\'' +
  6. ", defaultPrice:" + defaultPrice +
  7. ", productCategory:" + productCategory +
  8. ", supplier:" + supplier +
  9. ", productList:" + productList;
  10. }
  11.  
  12. /**
  13. * id : Integer
  14. * name : String
  15. * defaultPrice: Float
  16. * productCategory : ProductCategory
  17. * supplier : Supplier
  18. * productList : ProductList
  19. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement