Changeset 304
- Timestamp:
- Mar 23, 2010, 11:06:40 AM (13 years ago)
- Location:
- trunk/src/templates/artifacts
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/templates/artifacts/Controller.groovy
r286 r304 1 /** 2 * @artifact.name@ Controler 3 * 4 * Description of my controller 5 * 6 * @author your email (+name?) 7 * @since 2010mmdd 8 * @package ??? 9 * 10 * Revision information: 11 * $Rev$ 12 * $Author$ 13 * $Date$ 14 */ 1 15 @artifact.package@class @artifact.name@ { 2 16 /** 17 * index closure 18 */ 3 19 def index = { } 4 20 } -
trunk/src/templates/artifacts/DomainClass.groovy
r286 r304 1 /** 2 * @artifact.name@ Domain Class 3 * 4 * Description of my domain class 5 * 6 * @author your email (+name?) 7 * @since 2010mmdd 8 * @package ??? 9 * 10 * Revision information: 11 * $Rev$ 12 * $Author$ 13 * $Date$ 14 */ 1 15 @artifact.package@class @artifact.name@ { 2 3 16 static constraints = { 4 17 } -
trunk/src/templates/artifacts/Filters.groovy
r286 r304 1 /** 2 * @artifact.name@ Filters 3 * 4 * Description of my controller 5 * 6 * @author your email (+name?) 7 * @since 2010mmdd 8 * @package ??? 9 * 10 * Revision information: 11 * $Rev$ 12 * $Author$ 13 * $Date$ 14 */ 1 15 @artifact.package@class @artifact.name@ { 2 3 16 def filters = { 4 17 all(controller:'*', action:'*') { 5 18 before = { 6 19 7 20 } 8 21 after = { 9 22 10 23 } 11 24 afterView = { -
trunk/src/templates/artifacts/Service.groovy
r286 r304 1 /** 2 * @artifact.name@ Service 3 * 4 * Description of my service 5 * 6 * @author your email (+name?) 7 * @since 2010mmdd 8 * @package ??? 9 * 10 * Revision information: 11 * $Rev$ 12 * $Author$ 13 * $Date$ 14 */ 1 15 @artifact.package@class @artifact.name@ { 2 16 -
trunk/src/templates/artifacts/TagLib.groovy
r286 r304 1 /** 2 * @artifact.name@ Tag Library 3 * 4 * Description of my tab library 5 * 6 * @author your email (+name?) 7 * @since 2010mmdd 8 * @package ??? 9 * 10 * Revision information: 11 * $Rev$ 12 * $Author$ 13 * $Date$ 14 */ 1 15 @artifact.package@class @artifact.name@ { 2 16 -
trunk/src/templates/artifacts/Tests.groovy
r286 r304 1 1 @artifact.package@import grails.test.* 2 2 3 /** 4 * @artifact.name@ Test 5 * 6 * Description of my test 7 * 8 * @author your email (+name?) 9 * @since 2010mmdd 10 * @package ??? 11 * 12 * Revision information: 13 * $Rev$ 14 * $Author$ 15 * $Date$ 16 */ 3 17 class @artifact.name@ extends @artifact.superclass@ { 4 18 protected void setUp() { -
trunk/src/templates/artifacts/WebTest.groovy
r286 r304 1 /** 2 * @artifact.name@ Web Test 3 * 4 * Description of my web test 5 * 6 * @author your email (+name?) 7 * @since 2010mmdd 8 * @package ??? 9 * 10 * Revision information: 11 * $Rev$ 12 * $Author$ 13 * $Date$ 14 */ 1 15 class @webtest.name.caps@Test extends grails.util.WebTest { 2 16
Note: See TracChangeset
for help on using the changeset viewer.