Blame view
BRIC/src/Tests/TesteProgressAndBarra.java
479 Bytes
eeb5cac08
![]() |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
/* * 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(); } } |