So, there is already a way to generate a class implementation in IntelliJ (v11), but it is pretty simple.
It will create a class with all the methods necessary to satisfy the interface. These methods are empty and return zero if necessary.
I am looking for a plugin or something that will generate beans from an interface. If the generator sees the getXXXX or setXXX (or isXXX) method in the interface, it will create a member of this type and receive or return this element, respectively, in the implemented class.
source share