libpit - Personal Issue Tracker core libraries (Filter, Issue, Project, Category) pit-cli - Command Line Interface (CLI) to libpit pit-swing - Graphical, Swing interface to libpit (built using Griffon) libpit and pit-swing both build, though pit-swing is just an empty griffon poject.
14 lines
258 B
Groovy
14 lines
258 B
Groovy
class PitSwingController {
|
|
// 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 ->
|
|
}
|
|
*/
|
|
} |