/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Tests; import LOGIC.Barra; /** * * @author dalay */ public class TesteProgressAndBarra { public static void main(String args[]) throws InterruptedException{ Barra b = new Barra(); b.criarBarra(2); b.aumentar("texto 1"); Thread.sleep(2000); b.aumentar("texto 2"); Thread.sleep(2000); b.finalizar(); } }