
org.opentripplanner.ext.interactivelauncher.startup.StatusBar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
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