All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.ext.interactivelauncher.startup.StatusBar Maven / Gradle / Ivy

The newest version!
package org.opentripplanner.ext.interactivelauncher.startup;

import static org.opentripplanner.ext.interactivelauncher.support.ViewUtils.BG_STATUS_BAR;
import static org.opentripplanner.ext.interactivelauncher.support.ViewUtils.FG_STATUS_BAR;

import javax.swing.JTextField;

class StatusBar extends JTextField {

  public StatusBar() {
    setEditable(false);
    setBackground(BG_STATUS_BAR);
    setForeground(FG_STATUS_BAR);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy