/*
 * Created on 19/08/2003
 *
 * To change the template for this generated file go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
package sce.queue;

/**
 * @author TOSHIBA
 *
 * To change the template for this generated type comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
public class OrderApp {


	public static void main(String[] args) {
		Queue fila = new Queue();
		fila.enqueue("Primeiro",0);
		fila.enqueue("Segundo",1);
		fila.enqueue("Terceiro",2);
		fila.enqueue("Quarto",3);
		fila.enqueue("Quinto",4);
		fila.enqueue("Sexto",4);
		fila.enqueue("Sétimo",4);
		fila.enqueue("Oitavo",7);
		fila.enqueue("Nono",8);
		fila.enqueue("Décimo",9);
		while(!fila.isEmpty()){
			System.out.println((String)fila.dequeue());
		}
	}
}