add missing Override annotations

This commit is contained in:
Ingmar Goudt 2019-07-14 20:28:48 +02:00
parent 3fa2deaa64
commit 5ba206111a
15 changed files with 40 additions and 9 deletions

View file

@ -20,39 +20,48 @@ class TranslucentSynthSytle extends SynthStyle {
style = s;
}
@Override
public Object get(SynthContext context, Object key) {
return style.get(context, key);
}
@Override
public boolean getBoolean(SynthContext context, Object key,
boolean defaultValue) {
return style.getBoolean(context, key, defaultValue);
}
@Override
public Color getColor(SynthContext context, ColorType type) {
return style.getColor(context, type);
}
@Override
public Font getFont(SynthContext context) {
return style.getFont(context);
}
@Override
public SynthGraphicsUtils getGraphicsUtils(SynthContext context) {
return style.getGraphicsUtils(context);
}
@Override
public Icon getIcon(SynthContext context, Object key) {
return style.getIcon(context, key);
}
@Override
public Insets getInsets(SynthContext context, Insets insets) {
return style.getInsets(context, insets);
}
@Override
public int getInt(SynthContext context, Object key, int defaultValue) {
return style.getInt(context, key, defaultValue);
}
@Override
public SynthPainter getPainter(final SynthContext context) {
return new SynthPainter() {
public void paintInternalFrameBackground(SynthContext context,
@ -63,19 +72,23 @@ class TranslucentSynthSytle extends SynthStyle {
};
}
@Override
public String getString(SynthContext context, Object key,
String defaultValue) {
return style.getString(context, key, defaultValue);
}
@Override
public void installDefaults(SynthContext context) {
style.installDefaults(context);
}
@Override
public void uninstallDefaults(SynthContext context) {
style.uninstallDefaults(context);
}
@Override
public boolean isOpaque(SynthContext context) {
if (context.getRegion() == Region.INTERNAL_FRAME) {
return false;

View file

@ -60,6 +60,8 @@ public class ShadowLabel extends JLabel {
this.invertColors = invertColors;
}
@Override
public void setText(String text) {
this.text = text;
repaint();