Subversion Repositories eFlore/Archives.cel-v2

Rev

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

Rev 25 Rev 28
Line 16... Line 16...
16
import com.google.gwt.user.client.Window;
16
import com.google.gwt.user.client.Window;
17
import com.gwtext.client.core.EventObject;
17
import com.gwtext.client.core.EventObject;
18
import com.gwtext.client.core.RegionPosition;
18
import com.gwtext.client.core.RegionPosition;
19
import com.gwtext.client.data.Record;
19
import com.gwtext.client.data.Record;
20
import com.gwtext.client.data.Store;
20
import com.gwtext.client.data.Store;
-
 
21
import com.gwtext.client.data.Tree;
21
import com.gwtext.client.widgets.DataView;
22
import com.gwtext.client.widgets.DataView;
22
import com.gwtext.client.widgets.Panel;
23
import com.gwtext.client.widgets.Panel;
23
import com.gwtext.client.widgets.TabPanel;
24
import com.gwtext.client.widgets.TabPanel;
24
import com.gwtext.client.widgets.layout.BorderLayout;
25
import com.gwtext.client.widgets.layout.BorderLayout;
25
import com.gwtext.client.widgets.layout.BorderLayoutData;
26
import com.gwtext.client.widgets.layout.BorderLayoutData;
Line 690... Line 691...
690
		
691
		
Line 691... Line 692...
691
		getIModele().mettreAjourMotsClesId(text, id) ;
692
		getIModele().mettreAjourMotsClesId(text, id) ;
Line 692... Line 693...
692
		
693
		
Line 693... Line 694...
693
	}
694
	}
694
 
695
 
Line 695... Line 696...
695
	public void mettreAjourMotsCles(String motsClesEnCours) {
696
	public void mettreAjourMotsCles(String motsClesEnCours, Tree arbreMC) {
Line -... Line 697...
-
 
697
		
-
 
698
		String[] ids = getGalerieImage().getIdSelectionnees() ;
-
 
699
		getIModele().mettreAjourMotsCles(ids,motsClesEnCours,arbreMC) ;
-
 
700
		
-
 
701
	}
-
 
702
	
-
 
703
	public void ajouterMotCleDansArbre(TreeNode n,Tree arbreMC)
-
 
704
	{
-
 
705
		getIModele().ajouterMotCleDansArbre(n, arbreMC) ;
-
 
706
	}
-
 
707
 
-
 
708
	public void supprimerMotCleDansArbre(TreeNode n, Tree arbreMC) {
-
 
709
		
-
 
710
		getIModele().supprimerMotCleDansArbre(n,arbreMC) ;
-
 
711
		
-
 
712
	}
-
 
713
 
-
 
714
	public void modifierMotCleDansArbre(TreeNode n , Tree arbreMC) {
-
 
715
		
-
 
716
		getIModele().modifierMotCleDansArbre(n,arbreMC) ;
-
 
717
		
-
 
718
	}
Line 696... Line 719...
696
		
719