I've noticed the following code pattern while browsing through some sources of my project's 3rd party libraries:
public interface MyInterface {
public static class MyClass1 implements MyInterface { ... }
public static class MyClass2 implements MyInterface { ... }
public static class MyClass3 implements MyInterface { ... }
}
Or this one:
public class MyBaseClass {
public static class MyClass1 extends MyBaseClass { ... }
public static class MyClass2 extends MyBaseClass { ... }
public static class MyClass3 extends MyBaseClass { ... }
}
Real life examples:
- SwingX:
org.jdesktop.swingx.decorator.HighlightPredicate(Source) - Substance:
org.pushingpixels.substance.api.renderers.SubstanceDefaultTableCellRenderer(Source)
What's the advantage of having a code structure like this?
My first thought was "aggregation", but the same thing could be achieved using plain old packages. So when/why is it better to use public inner classes instead of a package?
staticis optional. All inner classes are static for an interface. – Prince John Wesley Mar 22 '11 at 12:20publiccome to think of it. ;) – Peter Lawrey Mar 22 '11 at 12:25