/*
 * Created on Mar 19, 2005
 *
 */
package tabua;

import java.util.Vector;

/**
 * @author paulo
 *
 */
public class Teste {

	static Linha[] t;
	static char[] c;
	static int x=10;
	static int y=10;
	static Tabua tabuleiro;
	static Vector pals;
	
	public static void main(String[] args){
		pals = new Vector();
		pals.add("paulo");
		pals.add("teste");
		pals.add("uuuuuuuuuuuuu");
		
		tabuleiro = new Tabua(pals,x,y);
		char t[][] = tabuleiro.getTabua();
		for(int i=0; i<y; i++){
			for(int j=0; j<x; j++){
				System.out.print(t[i][j]);
				System.out.print(" ");
			}
			System.out.println(" ");			
		}
	}		
}
