Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public class Quote{
  2.  
  3. private String quote;
  4. private String author;
  5. private String category;
  6.  
  7. public String getQuote() {
  8. return quote;
  9. }
  10.  
  11. public void setQuote(String quote) {
  12. this.quote = quote;
  13. }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement