1 6 7 package albel.tags.table.model; 8 9 13 public class RowState 14 { 15 16 19 private boolean editing; 20 21 24 private boolean creating; 25 26 29 private boolean deleting; 30 31 32 public RowState() 33 { 34 } 35 36 40 public boolean isEditing() 41 { 42 return this.editing; 43 } 44 45 49 public void setEditing(boolean editing) 50 { 51 this.editing = editing; 52 } 53 54 58 public boolean isCreating() 59 { 60 return this.creating; 61 } 62 63 67 public void setCreating(boolean creating) 68 { 69 this.creating = creating; 70 } 71 72 76 public boolean isDeleting() { 77 return this.deleting; 78 } 79 80 84 public void setDeleting(boolean deleting) { 85 this.deleting = deleting; 86 } 87 88 } 89 | Popular Tags |