Files
SAE32_2022/src/fr/sae/JSonInspector/Graphics/MyJLabel.java
Bilou 888d0404a8 $
2023-01-16 16:19:12 +01:00

27 lines
606 B
Java

package fr.sae.JSonInspector.Graphics;
import fr.sae.JSonInspector.Settings.Parameters;
import javax.swing.JLabel;
import java.awt.Color;
public class MyJLabel extends JLabel {
/**
*
* @param text le texte à afficher
* @param color la couleur du texte
*/
public MyJLabel(String text, Color color) {
super(text);
this.setForeground(color);
}
/**
*
* @param text le texte à afficher
*/
public MyJLabel(String text) {
super(text);
this.setForeground(Parameters.DEFAULT_TEXT_COLOR);
}
}