From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16802 invoked by alias); 28 May 2014 22:50:52 -0000 Mailing-List: contact java-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-prs-owner@gcc.gnu.org Received: (qmail 16777 invoked by uid 48); 28 May 2014 22:50:52 -0000 From: "henricky.mestre at hotmail dot com" To: java-prs@gcc.gnu.org Subject: [Bug java/61348] New: Socorro Date: Wed, 28 May 2014 22:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: java X-Bugzilla-Version: lto X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: henricky.mestre at hotmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2014-q2/txt/msg00007.txt.bz2 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. } }