Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1066 Rev 1104
Line 7... Line 7...
7
import com.google.gwt.user.client.Window;
7
import com.google.gwt.user.client.Window;
Line 8... Line 8...
8
 
8
 
Line 9... Line 9...
9
public class PropositionDetermination extends InterventionForum implements Serializable {
9
public class PropositionDetermination extends InterventionForum implements Serializable {
10
 
10
 
11
	private static final long serialVersionUID = 840032625524143547L;
11
	private static final long serialVersionUID = 840032625524143547L;
Line 12... Line 12...
12
	private String id, espece, commentaire;
12
	private String id, espece, commentaire, numNomenclatural;
13
	private int nbCommentaires = 0;
13
	private int nbCommentaires = 0;
Line 95... Line 95...
95
			nbCommentaires ++;
95
			nbCommentaires ++;
96
		}
96
		}
Line 97... Line 97...
97
 
97
 
98
		return nbCommentaires;
98
		return nbCommentaires;
-
 
99
	}
-
 
100
	
-
 
101
	public String getNumNomenclatural() {
-
 
102
		return numNomenclatural;
-
 
103
	}
-
 
104
 
-
 
105
	public void setNumNomenclatural(String numNomenclatural) {
-
 
106
		this.numNomenclatural = numNomenclatural;
99
	}
107
	}