Barra de progresso com JNI

Continuando a discussão de Progresso [RESOLVIDO]:

@ViniGodoy Você tem alguma ideia de como isso poderia ser feito ?

Vc não tinha resolvido isso?

yourFrame.setIconImage(Toolkit.getDefaultToolkit().getImage(getClass().getResource(Filepath)));

Agora se vc quer trocar só a cor do jProgressBar mesmo, pode fazer assim:

UIManager.put("ProgressBar.background", Color.orange);
UIManager.put("ProgressBar.foreground", Color.blue);
UIManager.put("ProgressBar.selectionBackground", Color.red);
UIManager.put("ProgressBar.selectionForeground", Color.green);

JProgressBar progress = new JProgressBar();
getContentPane().add(progress);