addonInit(app)
Purpose
Perform customizations before any contributions are made.Examples
import griffon.core.GriffonApplication
class SampleGriffonAddon {
void addonInit(GriffonApplication app) {
// init code goes here
}
}
(Quick Reference)
addonInit(app)PurposePerform customizations before any contributions are made.Examplesimport griffon.core.GriffonApplication
class SampleGriffonAddon {
void addonInit(GriffonApplication app) {
// init code goes here
}
} DescriptionThis method is called right after the addon is loaded but before any contributions are made to the application and builders. |
AddonsCommand LineGriffon Shell |