Best way to handle changing list of class imports

2009-10-10 Thread Scott Grant
Hi there, I'd like to set up a framework in which I can add or remove new classes of a given expected subclass to my package, and have the system load that set at runtime and be able to use them. In essence, if I have a class X, and subclasses A, B, and C that derive from X, what's the most

Re: Best way to handle changing list of class imports

2009-10-10 Thread Scott Grant
On Oct 10, 2:42 pm, Diez B. Roggisch de...@nospam.web.de wrote: Scott Grant schrieb: Hi there, I'd like to set up a framework in which I can add or remove new classes of a given expected subclass to my package, and have the system load that set at runtime and be able to use them

Re: Best way to handle changing list of class imports

2009-10-10 Thread Scott Grant
On Oct 10, 6:44 pm, Dave Angel da...@ieee.org wrote: Scott Grant wrote: On Oct 10, 2:42 pm, Diez B. Roggisch de...@nospam.web.de wrote: Scott Grant schrieb: Hi there, I'd like to set up a framework in which I can add or remove new classes of a given expected subclass to my package