stratacode / issues

Empty StrataCode project to store github issues
0 stars 0 forks source link

Multiple inheritance does not support methods #2

Closed jeffvroom closed 6 years ago

jeffvroom commented 10 years ago

Currently interfaces in StrataCode support instance fields, and property assignments which are both inherited by implementing classes. Now with Java 8's default methods, we should use that syntax and/or implementation for methods I think. Before that , we were just going to copy any methods that had bodies into all implementing classes, not requiring the default operator but essentially implementing those semantics.

jeffvroom commented 6 years ago

Now that there are default methods for interfaces in Java8 I don't think we need this since they are pretty much the same thing.