Index: src/main/java/common/javax/swing/plaf/metal/OceanTheme.java =================================================================== --- src/main/java/common/javax/swing/plaf/metal/OceanTheme.java (revision 0) +++ src/main/java/common/javax/swing/plaf/metal/OceanTheme.java (revision 0) @@ -0,0 +1,85 @@ +package javax.swing.plaf.metal; + +import javax.swing.UIDefaults; +import javax.swing.plaf.ColorUIResource; + +public class OceanTheme extends DefaultMetalTheme { + + @Override + public String getName() { + return "Ocean"; + } + + @Override + protected ColorUIResource getPrimary1() { + // TODO implement + return super.getPrimary1(); + } + + @Override + protected ColorUIResource getPrimary2() { + // TODO implement + return super.getPrimary2(); + } + + @Override + protected ColorUIResource getPrimary3() { + // TODO implement + return super.getPrimary3(); + } + + @Override + protected ColorUIResource getSecondary1() { + // TODO implement + return super.getSecondary1(); + } + + @Override + protected ColorUIResource getSecondary2() { + // TODO implement + return super.getSecondary2(); + } + + @Override + protected ColorUIResource getSecondary3() { + // TODO implement + return super.getSecondary3(); + } + + @Override + public void addCustomEntriesToTable(UIDefaults uiDefs) { + // TODO implement + super.addCustomEntriesToTable(uiDefs); + } + + @Override + protected ColorUIResource getBlack() { + // TODO implement + return super.getBlack(); + } + + @Override + public ColorUIResource getControlTextColor() { + // TODO implement + return super.getControlTextColor(); + } + + @Override + public ColorUIResource getDesktopColor() { + // TODO implement + return super.getDesktopColor(); + } + + @Override + public ColorUIResource getInactiveControlTextColor() { + // TODO implement + return super.getInactiveControlTextColor(); + } + + @Override + public ColorUIResource getMenuDisabledForeground() { + // TODO implement + return super.getMenuDisabledForeground(); + } + +}