Subversion Repositories eFlore/Applications.del

Rev

Rev 887 | Rev 893 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 887 Rev 890
Line 5... Line 5...
5
import java.util.List;
5
import java.util.List;
6
public class InterventionForum {
6
public class InterventionForum {
Line 7... Line 7...
7
	
7
	
8
	private Contributeur contributeur;
8
	private Contributeur contributeur;
9
	private Date date;
9
	private Date date;
10
	private String id;
10
	private String id, idParent;
11
	private InterventionForum parent;
11
	private InterventionForum parent;
12
	private Observation observation;
12
	private Observation observation;
Line 13... Line 13...
13
	public List<Commentaire> listeCommentaires = new ArrayList<Commentaire>();
13
	public List<Commentaire> listeCommentaires = new ArrayList<Commentaire>();
Line 18... Line 18...
18
	
18
	
19
	public String getId() {
19
	public String getId() {
20
		return id;
20
		return id;
Line -... Line 21...
-
 
21
	}
-
 
22
	
-
 
23
	public String getIdParent() {
-
 
24
		return idParent;
-
 
25
	}
-
 
26
 
-
 
27
	public void setIdParent(String idParent) {
-
 
28
		this.idParent = idParent;
21
	}
29
	}
22
	
30
	
23
	public void setParent(InterventionForum parent) {
31
	public void setParent(InterventionForum parent) {
Line 24... Line 32...
24
		this.parent = parent;
32
		this.parent = parent;