Changement du titre en title

This commit is contained in:
Frederic Debuire
2008-01-10 13:32:38 +00:00
parent 01889e0fea
commit f05a9005c1

View File

@@ -1,6 +1,7 @@
package org.yacos.core.conferences;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
@@ -24,7 +25,7 @@ public class Conference implements Serializable{
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
private Integer id;
private String titre;
private String title;
private String description;
private String otherInformations;
@Temporal(TemporalType.DATE)
@@ -123,11 +124,11 @@ public class Conference implements Serializable{
public void setOtherInformations(String otherInformations) {
this.otherInformations = otherInformations;
}
public String getTitre() {
return titre;
public String getTitle() {
return title;
}
public void setTitre(String titre) {
this.titre = titre;
public void setTitle(String title) {
this.title = title;
}
public Integer getId() {
return id;
@@ -142,7 +143,7 @@ public class Conference implements Serializable{
public Conference(String titre, String descirption, String infoComplementray, Date dataAbstract, Date dateArticle, Date dateEvaluation, Date dateStart, Date dateEnd) {
this();
this.titre = titre;
this.title = titre;
this.description = descirption;
this.otherInformations = infoComplementray;
this.dateAbstract = dataAbstract;