$
This commit is contained in:
20
src/fr/sae/JSonInspector/Graphics/MyJLabel.java
Normal file
20
src/fr/sae/JSonInspector/Graphics/MyJLabel.java
Normal file
@@ -0,0 +1,20 @@
|
||||
package fr.sae.JSonInspector.Graphics;
|
||||
|
||||
import fr.sae.JSonInspector.Settings.Parameters;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
|
||||
public class MyJLabel extends JLabel {
|
||||
public MyJLabel(String text, Color color) {
|
||||
super(text);
|
||||
// this.setFont(Parameters.FILE_FONT);
|
||||
this.setForeground(color);
|
||||
}
|
||||
|
||||
public MyJLabel(String text) {
|
||||
super(text);
|
||||
// this.setFont(Parameters.FILE_FONT);
|
||||
this.setForeground(Parameters.DEFAULT_TEXT_COLOR);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user