Here you can find the source of addProgressBar(final JFrame win)
public static JProgressBar addProgressBar(final JFrame win)
//package com.java2s; //License from project: Open Source License import javax.swing.*; public class Main { public static JProgressBar addProgressBar(final JFrame win) { JProgressBar progressBar = new JProgressBar(0, 1); JPanel newRoot = new JPanel(); newRoot.setLayout(new BoxLayout(newRoot, BoxLayout.Y_AXIS)); newRoot.add(win.getContentPane()); newRoot.add(progressBar);// w w w . j av a 2 s. c o m win.setContentPane(newRoot); win.pack(); return progressBar; } }