I have a class which has not default constructor. And I need a way to get \'blank\' instance of this class. \'blank\' means that after instantiation all class fields should
The only solution I can think of would be to use a bytecode manipulation library such as javassist to add a default constructor.