Guest User

Untitled

a guest
Jan 23rd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. private fun save() {
  2. // flush changes from the text field into the model
  3. model.commit()
  4.  
  5. // edited cat schedule is contained in the model
  6. val catSchedule = model.item
  7. println("Saving Changes: ${catSchedule.ownerName} /" +
  8. "${catSchedule.catName} / ${catSchedule.time}")
  9. close()
  10. }
Add Comment
Please, Sign In to add comment