// pre-populate the domain objects before GUI comes up public class Boot { public Boot () { // constructor called by GUI //create some beans new Bean("One Bean"); new Bean("Some Bean"); new Bean("Another Bean"); } }