Subversion Repositories eFlore/Applications.del

Rev

Rev 445 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 445 Rev 446
Line 5... Line 5...
5
public class EvenementChangementPas extends GwtEvent<GestionnaireEvenementChangementPas> {
5
public class EvenementChangementPas extends GwtEvent<GestionnaireEvenementChangementPas> {
Line 6... Line 6...
6
 
6
 
Line 7... Line 7...
7
	public static com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementChangementPas> TYPE = new com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementChangementPas>();
7
	public static com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementChangementPas> TYPE = new com.google.gwt.event.shared.GwtEvent.Type<GestionnaireEvenementChangementPas>();
-
 
8
 
Line 8... Line 9...
8
 
9
	private int pas;
9
	private int pas;
10
	private String groupePagination = null;
10
 
11
 
-
 
12
	public EvenementChangementPas(int pas) {
-
 
13
		this.pas = pas;
-
 
14
	}
-
 
15
	
-
 
16
	public EvenementChangementPas(int pas, String groupePagination) {
Line 11... Line 17...
11
	public EvenementChangementPas(int pas) {
17
		this.pas = pas;
12
		this.pas = pas;
18
		this.groupePagination = groupePagination;
13
	}
19
	}
14
 
20
 
Line 27... Line 33...
27
	}
33
	}
Line 28... Line 34...
28
 
34
 
29
	public void setPas(int pas) {
35
	public void setPas(int pas) {
30
		this.pas = pas;
36
		this.pas = pas;
-
 
37
	}
-
 
38
	
-
 
39
	public String getGroupePagination() {
-
 
40
		return groupePagination;
-
 
41
	}
-
 
42
 
-
 
43
	public void setGroupePagination(String groupePagination) {
-
 
44
		this.groupePagination = groupePagination;
Line 31... Line 45...
31
	}
45
	}
32
 
46