Guest User

Untitled

a guest
Oct 17th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. // WARNING: DO NOT EDIT THIS FILE. THIS FILE IS MANAGED BY SPRING ROO.
  2. // You may push code into the target .java compilation unit if you wish to edit any member(s).
  3.  
  4. package org.mikeneck.roo.taskmanager.model;
  5.  
  6. import org.mikeneck.roo.taskmanager.model.Task;
  7.  
  8. privileged aspect Task_Roo_JavaBean {
  9.  
  10. public String Task.getName() {
  11. return this.name;
  12. }
  13.  
  14. public void Task.setName(String name) {
  15. this.name = name;
  16. }
  17.  
  18. public String Task.getDescription() {
  19. return this.description;
  20. }
  21.  
  22. public void Task.setDescription(String description) {
  23. this.description = description;
  24. }
  25.  
  26. public Boolean Task.getCompleted() {
  27. return this.completed;
  28. }
  29.  
  30. public void Task.setCompleted(Boolean completed) {
  31. this.completed = completed;
  32. }
  33.  
  34. }
Add Comment
Please, Sign In to add comment