Re: How to return class objects?
Posted By:
Ionel_Condor
Posted On:
Monday, June 11, 2001 08:46 AM
You should not provide implemetation of the methods here, remember that the purpose of an interface is just to define the behaviour at an abstract level, NOT to implement it.
Than you should write implementation classes that will do your tasks (by implementing there the methods from your interfaces).
For complex issues related to clas objects you should read the Class class or the Reflection API.