Re: On EventBubbling

2010-10-24 Thread Howard Lewis Ship
The boolean logic is hard coded; perhaps you should think in terms of a enum to return instead. On Sat, Oct 23, 2010 at 11:29 PM, Alessio Gambi wrote: > Hi, > > I would like to return a boolean value form the handler instead of using the > value of the boolean itself to control the bubbling proce

Re: [T5.2] Beginner questions about modules, services injection and packages

2010-10-24 Thread Mark Shead
When you make a droppable jar you usually only have one Module class specified in the jar file. If you need more, you annotate the specified module to point it to other submodules. So you should probably be able to do the same thing for your AppModule to point it to other submodules as well. Ad

Re: [T5.2] Beginner questions about modules, services injection and packages

2010-10-24 Thread Muhammad Mohsen
Thank you Mark, That explained lots of things :). I want to make a separate module class just for the sake of code organization. May be It's wrong to create a module class for every service category(data access, business logic..etc). What do you think ? Is it ok performance and architecture wise ?