1 package org.opentrafficsim.editor; 2 3 import javax.swing.JLabel; 4 5 import org.opentrafficsim.swing.gui.AppearanceControl; 6 7 /** 8 * Status label with fixed font color irrespective of GUI appearance. 9 * <p> 10 * Copyright (c) 2023-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 11 * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>. 12 * </p> 13 * @author <a href="https://github.com/averbraeck">Alexander Verbraeck</a> 14 * @author <a href="https://github.com/peter-knoppers">Peter Knoppers</a> 15 * @author <a href="https://github.com/wjschakel">Wouter Schakel</a> 16 */ 17 public class StatusLabel extends JLabel implements AppearanceControl 18 { 19 20 /** */ 21 private static final long serialVersionUID = 20231017L; 22 23 }