| 1 | /*\r |
| 2 | * To change this template, choose Tools | Templates\r |
| 3 | * and open the template in the editor.\r |
| 4 | */\r |
| 5 | package org.ufcspa.simdecs.entidade;\r |
| 6 | \r |
| 7 | import java.io.Serializable;\r |
| 8 | import javax.persistence.*;\r |
| 9 | \r |
| 10 | \r |
| 11 | /**\r |
| 12 | *\r |
| 13 | * @author pbarros\r |
| 14 | */\r |
| 15 | @Entity\r |
| 16 | @Table(name="ArgumentosPedagogicos")\r |
| 17 | public class ArgumentosPedagogicos implements Serializable {\r |
| 18 | private static final long serialVersionUID = 1L;\r |
| 19 | \r |
| 20 | @SequenceGenerator(name="seqArgumentosPedagogicos", sequenceName="SQARGPED")\r |
| 21 | @GeneratedValue(strategy=GenerationType.AUTO, generator="seqArgumentosPedagogicos")\r |
| 22 | @Id\r |
| 23 | private Long Codigo;\r |
| 24 | \r |
| 25 | @Column(length=250)\r |
| 26 | private String Argumento;\r |
| 27 | \r |
| 28 | \r |
| 29 | @Column(length=250)\r |
| 30 | private String Expectativa;\r |
| 31 | \r |
| 32 | @Column(length=250)\r |
| 33 | private String Avaliacao;\r |
| 34 | \r |
| 35 | @Column\r |
| 36 | private Long CodTaticaMediador;\r |
| 37 | \r |
| 38 | public Long getCodigo() { return this.Codigo; }\r |
| 39 | public String getArgumento() { return this.Argumento; }\r |
| 40 | public void setArgumento(String Argumento) { this.Argumento = Argumento; }\r |
| 41 | public String getExpectativa() { return this.Expectativa; }\r |
| 42 | public void setExpectativa(String Expectativa) { this.Expectativa = Expectativa; }\r |
| 43 | public String getAvaliacao() { return this.Avaliacao; }\r |
| 44 | public void setAvaliacao(String Avaliacao) { this.Avaliacao = Avaliacao; }\r |
| 45 | public Long getCodTaticaMediador() { return this.CodTaticaMediador; }\r |
| 46 | public void setCodTaticaMediador(Long CodTaticaMediador) { this.CodTaticaMediador = CodTaticaMediador; }\r |
| 47 | \r |
| 48 | \r |
| 49 | @Override\r |
| 50 | public int hashCode() {\r |
| 51 | int hash = 0;\r |
| 52 | hash += (Codigo != null ? Codigo.hashCode() : 0);\r |
| 53 | return hash;\r |
| 54 | }\r |
| 55 | \r |
| 56 | @Override\r |
| 57 | public boolean equals(Object object) {\r |
| 58 | // TODO: Warning - this method won't work in the case the id fields are not set\r |
| 59 | if (!(object instanceof ArgumentosPedagogicos)) {\r |
| 60 | return false;\r |
| 61 | }\r |
| 62 | ArgumentosPedagogicos other = (ArgumentosPedagogicos) object;\r |
| 63 | if ((this.Codigo == null && other.Codigo != null) || (this.Codigo != null && !this.Codigo.equals(other.Codigo))) {\r |
| 64 | return false;\r |
| 65 | }\r |
| 66 | return true;\r |
| 67 | }\r |
| 68 | \r |
| 69 | @Override\r |
| 70 | public String toString() {\r |
| 71 | return "org.ufcspa.simdecs.entidade.ArgumentosPedagogicos[ Codigo=" + Codigo + " ]";\r |
| 72 | }\r |
| 73 | \r |
| 74 | }\r |