https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61348
Bug ID: 61348 Summary: Socorro Product: gcc Version: lto Status: UNCONFIRMED Severity: normal Priority: P3 Component: java Assignee: unassigned at gcc dot gnu.org Reporter: henricky.mestre at hotmail dot com package Comeres.Produtos; import Comeres.Funcionario.*; import java.util.Date; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.Table; import javax.persistence.Temporal; import javax.persistence.TemporalType; /** * * @author Maurinho */ @Entity @Table(name = "Funcionario") public class Funcionario { @Id @GeneratedValue private int codigo; @Column(nullable = true) private String nome; @Column(nullable = true, length = 50) private String endereco; private String numero_casa; private String bairro; @Column(nullable = true) private String cep; private String cidade; @Column(length = 20) private String estado; @Column(length = 10) private String sexo; @Column(nullable = true, length = 22) private String cpf; @Column(nullable = true, length = 40) private String rg; //orgao emissor @Column(nullable = true) private String emissor; @Column(length = 25) private String fone; @Temporal(TemporalType.DATE) private Date dataNascimento; /** * @return the codigo */ public int getCodigo() { return codigo; } /** * @param codigo the codigo to set */ public void setCodigo(int codigo) { this.codigo = codigo; } /** * @return the nome */ public String getNome() { return nome; } /** * @param nome the nome to set */ public void setNome(String nome) { this.nome = nome; } /** * @return the endereco */ public String getEndereco() { return endereco; } /** * @param endereco the endereco to set */ public void setEndereco(String endereco) { this.endereco = endereco; } /** * @return the numero_casa */ public String getNumero_casa() { return numero_casa; } /** * @param numero_casa the numero_casa to set */ public void setNumero_casa(String numero_casa) { this.numero_casa = numero_casa; } /** * @return the bairro */ public String getBairro() { return bairro; } /** * @param bairro the bairro to set */ public void setBairro(String bairro) { this.bairro = bairro; } /** * @return the cep */ public String getCep() { return cep; } /** * @param cep the cep to set */ public void setCep(String cep) { this.cep = cep; } /** * @return the cidade */ public String getCidade() { return cidade; } /** * @param cidade the cidade to set */ public void setCidade(String cidade) { this.cidade = cidade; } /** * @return the estado */ public String getEstado() { return estado; } /** * @param estado the estado to set */ public void setEstado(String estado) { this.estado = estado; } /** * @return the sexo */ public String getSexo() { return sexo; } /** * @param sexo the sexo to set */ public void setSexo(String sexo) { this.sexo = sexo; } /** * @return the cpf */ public String getCpf() { return cpf; } /** * @param cpf the cpf to set */ public void setCpf(String cpf) { this.cpf = cpf; } /** * @return the rg */ public String getRg() { return rg; } /** * @param rg the rg to set */ public void setRg(String rg) { this.rg = rg; } /** * @return the emissor */ public String getEmissor() { return emissor; } /** * @param emissor the emissor to set */ public void setEmissor(String emissor) { this.emissor = emissor; } /** * @return the fone */ public String getFone() { return fone; } /** * @param fone the fone to set */ public void setFone(String fone) { this.fone = fone; } /** * @return the dataNascimento */ public Date getDataNascimento() { return dataNascimento; } /** * @param dataNascimento the dataNascimento to set */ public void setDataNascimento(Date dataNascimento) { this.dataNascimento = dataNascimento; } Funcionario get(int rowIndex) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } }