Class Dependancy Injection

2007-04-13 Thread Robert Rawlins - Think Blue
Hey again guys, I'm looking to get an answer about dependency injection in python classes, what is the best way to deal with this? For instance, in my application I have a configuration bean which contains all the applications configuration information. Now in one of other classes I need

Re: Class Dependancy Injection

2007-04-13 Thread Steve Holden
Robert Rawlins - Think Blue wrote: Hey again guys, I’m looking to get an answer about dependency injection in python classes, what is the best way to deal with this? For instance, in my application I have a configuration bean which contains all the applications configuration

RE: Class Dependancy Injection

2007-04-13 Thread Robert Rawlins - Think Blue
Dependancy Injection Robert Rawlins - Think Blue wrote: Hey again guys, I'm looking to get an answer about dependency injection in python classes, what is the best way to deal with this? For instance, in my application I have a configuration bean which contains all

Re: Class Dependancy Injection

2007-04-13 Thread Steven Bethard
Robert Rawlins - Think Blue wrote: For instance, in my application I have a configuration bean which contains all the applications configuration information. Now in one of other classes I need access to those configuration settings. What I would have done in my ColdFusion/JAVA type