At line 20 added 6 lines. |
/* |
* Created on Apr 17, 2005 |
* |
* TODO To change the template for this generated file go to |
* Window - Preferences - Java - Code Style - Code Templates |
*/ |
At line 34 changed 1 line. |
private Long id; |
private Long weblogId; |
At line 44 removed 5 lines. |
/* |
* Generate your getters and setters using your favorite IDE: In Eclipse: |
* Right-click -> Source -> Generate Getters and Setters |
*/ |
|
At line 89 changed 2 lines. |
public Long getId() { |
return id; |
public Long getWeblogId() { |
return weblogId; |
At line 97 changed 2 lines. |
public void setId(Long id) { |
this.id = id; |
public void setWeblogId(Long weblogId) { |
this.weblogId = weblogId; |
At line 145 changed 1 line. |
rhs.dateCreated).append(this.id, rhs.id).append( |
rhs.dateCreated).append(this.weblogId, rhs.weblogId).append( |
At line 153 changed 1 line. |
return new HashCodeBuilder(-1229851019, 1071684527).append( |
return new HashCodeBuilder(2066507029, -390167195).append( |
At line 155 changed 1 line. |
.append(this.id).append(this.version).toHashCode(); |
.append(this.weblogId).append(this.version).toHashCode(); |
At line 163 changed 1 line. |
.append("id", this.id).append("version", this.version).append( |
.append("id", this.weblogId).append("version", this.version).append( |
At line 170 added 1 line. |
|