1 package org.woehlke.computer.kurzweil.tabs.cca.view; 2 3 import org.woehlke.computer.kurzweil.tabs.cca.config.ObjectRegistry; 4 5 import javax.swing.*; 6 import java.awt.*; 7 8 /** 9 * TODO write doc. 10 */ 11 public class PanelSubtitle extends JPanel { 12 13 private final JLabel subtitleLabel; 14 15 public PanelSubtitle(ObjectRegistry ctx) { 16 this.subtitleLabel = new JLabel(ctx.getConfig().getSubtitle()); 17 FlowLayout layout = new FlowLayout(); 18 this.setLayout(layout); 19 this.add(subtitleLabel); 20 } 21 22 }