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