Changeset 124 for trunk/grails-app/domain/AssetExtendedAttribute.groovy
- Timestamp:
- May 4, 2009, 1:59:11 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/AssetExtendedAttribute.groovy
r122 r124 1 1 class AssetExtendedAttribute { 2 2 3 Asset Type assetType3 Asset asset 4 4 AssetExtendedAttributeType assetExtendedAttributeType 5 5 … … 9 9 // static hasMany = [] 10 10 11 static belongsTo = [Asset Type]11 static belongsTo = [Asset] 12 12 13 13 // static constraints = { … … 16 16 17 17 String toString() { 18 "${ this.value}"18 "${assetExtendedAttributeType.name}: ${this.value}" 19 19 } 20 20 }
Note: See TracChangeset
for help on using the changeset viewer.