This commit is contained in:
Maxime Dagnicourt
2007-12-17 10:22:05 +00:00
parent b3f683be13
commit 570be3667c

View File

@@ -80,6 +80,9 @@ public class Article implements Serializable {
this.mainAuthor = mainAuthor; this.mainAuthor = mainAuthor;
this.secondaryAuthors = secondaryAuthor; this.secondaryAuthors = secondaryAuthor;
this.state = state; this.state = state;
secondaryAuthors = new ArrayList<String>();
referees = new ArrayList<User>();
pcMembers = new ArrayList<User>();
} }
@Id @Id
@@ -210,4 +213,8 @@ public class Article implements Serializable {
public void setConference(Conference conference){ public void setConference(Conference conference){
this.conference = conference; this.conference = conference;
} }
public boolean asMember(){
return false;
}
} }