Class someInterface = Class.fromName("some.package.SomeInterface");
How do I now create a new class that implements someInterface?
I need to create a new class, and pass it to a function that needs a SomeInterface as an argument.
|
3
|
How do I now create a new class that implements I need to create a new class, and pass it to a function that needs a
|
|||
|
|
|
Creating something which pretends to implement an interface on the fly actually isn't too hard. You can use Of course, you could actually generate a real class with a library like BCEL. If this is for test purposes, you should look at mocking frameworks like jMock and EasyMock. |
||||||
|
|
|
Actually, you have to use the class name in Class.fromName() method and cast to your interface type. See if the sample below helps.
|
|||
|
|
|
|
If you want to go beyond interfaces, you might want to take a look at cglib and objenesis. Together, they will allow you to do some pretty powerful stuff, extending an abstract class and instantiating it. (jMock uses them for that purpose, for example.) If you want to stick with interfaces, do what Jon Skeet said :). |
||
|
|