UIDefaultsDump: dump FlatLineBorder parameters because they may be specified in properties files

This commit is contained in:
Karl Tauber
2020-05-05 16:34:30 +02:00
parent 77f17eaa3e
commit 34266761d1
6 changed files with 54 additions and 38 deletions

View File

@@ -48,6 +48,14 @@ public class FlatLineBorder
this.lineThickness = lineThickness;
}
public Color getLineColor() {
return lineColor;
}
public float getLineThickness() {
return lineThickness;
}
@Override
public void paintBorder( Component c, Graphics g, int x, int y, int width, int height ) {
Graphics2D g2 = (Graphics2D) g.create();