16 lines
294 B
Groovy
16 lines
294 B
Groovy
package com.jdbernard.timestamper
|
|
|
|
class LogDialogController {
|
|
// these will be injected by Griffon
|
|
def model
|
|
def view
|
|
|
|
void mvcGroupInit(Map args) {
|
|
// this method is called after model and view are injected
|
|
}
|
|
|
|
/*
|
|
def action = { evt = null ->
|
|
}
|
|
*/
|
|
} |