Changeset 887 for trunk/grails-app/domain
- Timestamp:
- Sep 15, 2010, 12:54:12 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/EventGroup.groovy
r857 r887 23 23 name(unique:['parent']) 24 24 } 25 26 /**27 * Return all events and samplingEvents28 * @return ArrayList29 */30 def ArrayList getAllEvents() {31 return (32 ((events) ? events : [])33 +34 ((samplingEvents) ? samplingEvents : [])35 )36 }37 25 }
Note: See TracChangeset
for help on using the changeset viewer.