Guest User

Untitled

a guest
Nov 16th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public TableList(String task, String subject, LocalDate dueDate) {
  2. this.task = new SimpleStringProperty(task);
  3. this.subject = new SimpleStringProperty(subject);
  4. this.dueDate = dueDate;
  5. this.completed = new JFXButton("Finished");
  6. completed.setOnAction(this);
  7. }
  8.  
  9.  
  10. @Override
  11. public void handle(ActionEvent event) {
  12. // DELETE ROW HERE
  13. }
Add Comment
Please, Sign In to add comment