I have an interface that I want to implement in separate classes after doing a quick google search apparently, Java doesn\'t have partial classes. Is there a way that I ca
You can declare methods trough multiple interfaces and then let your concrete classes implement multiple interfaces.
More over, using java.lang.Proxy you can assemble your service from multiple interfaces and delegate actual method calls to a separate implementation.