Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public class Task {
  2.  
  3. private String description;
  4. private boolean isComplete;
  5. private int priority;
  6.  
  7. public Task(String description, boolean isComplete, int priority) {
  8. this.description = description;
  9. this.isComplete = isComplete;
  10. this.priority = priority;
  11. }
  12.  
  13. // getter and setters ...
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement