tituloEmail = new JLabel(bundle.getString("criar.pessoafisica.titulo.email"));
tipos = new ArrayList<JComboBox>();
// Botoes e caixas de textos
// GerarCodigo gerarCodigo = new GerarCodigo("PASSAGEM");
MaskFormatter mask = null;
try {
mask = new MaskFormatter("#");
mask.setValidCharacters("123456789");
nascimento = new JFormattedTextField(new MaskFormatter("##/##/####"));
cpf = new JFormattedTextField(new MaskFormatter("###.###.###-##"));
} catch (ParseException e1) {
ErrorSystem.addException(e1, bundle);
}
quantidade = new JFormattedTextField(mask);
nome = new JTextField(bundle.getString("criar.pessoafisica.antes.nome"));