예제 #1
0
파일: Css.java 프로젝트: k9m/simplechat
  public static JMenu getMenu(String title) {
    JMenu component = new JMenu(title);
    component.setBackground(BACKGROUND_COLOR_MENU);
    component.setFont(FONT_TYPE_TXTA);

    return component;
  }