Subversion Repositories eFlore/Applications.del

Rev

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

Rev 171 Rev 187
Line 9... Line 9...
9
import com.google.gwt.i18n.client.DateTimeFormat;
9
import com.google.gwt.i18n.client.DateTimeFormat;
10
import com.google.gwt.i18n.client.DateTimeFormat.PredefinedFormat;
10
import com.google.gwt.i18n.client.DateTimeFormat.PredefinedFormat;
11
import com.google.gwt.user.client.ui.Composite;
11
import com.google.gwt.user.client.ui.Composite;
12
import com.google.gwt.user.client.ui.FlexTable;
12
import com.google.gwt.user.client.ui.FlexTable;
13
import com.google.gwt.user.client.ui.HTML;
13
import com.google.gwt.user.client.ui.HTML;
-
 
14
import com.google.gwt.user.client.ui.HTMLPanel;
-
 
15
import com.google.gwt.user.client.ui.IsWidget;
14
import com.google.gwt.user.client.ui.Tree;
16
import com.google.gwt.user.client.ui.Tree;
15
import com.google.gwt.user.client.ui.TreeItem;
17
import com.google.gwt.user.client.ui.TreeItem;
Line 16... Line 18...
16
 
18
 
Line 17... Line 19...
17
public class LigneForumVue extends Composite {
19
public class LigneForumVue extends Composite {
18
	
20
	
Line 19... Line 21...
19
	FlexTable tableParente;
21
	FlexTable tableParente;
20
	HTML barreRepartition;
22
	HTMLPanel barreRepartition;
21
	
23
	
Line 22... Line 24...
22
	public LigneForumVue(FlexTable flexTable) {
24
	public LigneForumVue(FlexTable flexTable) {
Line 23... Line 25...
23
		tableParente = flexTable;
25
		tableParente = flexTable;
24
	}
26
	}
25
		
27
		
26
	public void chargerDetermination(PropositionDetermination determination, HTML barreRepartition) {
28
	public void chargerDetermination(PropositionDetermination determination, IsWidget barreRepartition) {
Line 27... Line 29...
27
 
29
 
28
		Tree arbreCommentaires = new Tree();
30
		Tree arbreCommentaires = new Tree();
29
		TreeItem racineArbreCommentaires = new TreeItem();
31
		TreeItem racineArbreCommentaires = new TreeItem();
30
		arbreCommentaires.addItem(racineArbreCommentaires);
32
		arbreCommentaires.addItem(racineArbreCommentaires);
31
		creerListeCommentaireRecursive(racineArbreCommentaires, determination.getCommentaires());
33
		creerListeCommentaireRecursive(racineArbreCommentaires, determination.getCommentaires());
Line 32... Line 34...
32
 
34