source: trunk/grails-app/domain/TaskModification.groovy @ 195

Last change on this file since 195 was 187, checked in by gav, 15 years ago

Small change of toString method.

File size: 550 bytes
RevLine 
[180]1import java.text.SimpleDateFormat
2
[93]3class TaskModification {
[66]4    Person person
[93]5    TaskModificationType taskModificationType
[66]6    Task task
7    Date date = new Date()
[180]8    String comment = ""
[66]9
[93]10    static belongsTo = [Person, TaskModificationType, Task]
[66]11
12    static constraints = {
13        person()
[93]14        taskModificationType()
[66]15        task()
16        date()
17        comment()
18    }
19
[180]20    String toString() {
21        def date = new SimpleDateFormat("EEE, dd-MMM-yyyy").format(this.date)
[187]22        "${taskModificationType} on ${date} by ${person}."
[180]23    }
[66]24}
Note: See TracBrowser for help on using the repository browser.