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