Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1446 Rev 1493
Line 9... Line 9...
9
import org.tela_botanica.client.interfaces.Rafraichissable;
9
import org.tela_botanica.client.interfaces.Rafraichissable;
10
import org.tela_botanica.client.modeles.ValeurListe;
10
import org.tela_botanica.client.modeles.ValeurListe;
11
import org.tela_botanica.client.modeles.ValeurListeAsyncDao;
11
import org.tela_botanica.client.modeles.ValeurListeAsyncDao;
12
import org.tela_botanica.client.synchronisation.Sequenceur;
12
import org.tela_botanica.client.synchronisation.Sequenceur;
13
import org.tela_botanica.client.util.Debug;
13
import org.tela_botanica.client.util.Debug;
-
 
14
import org.tela_botanica.client.util.UtilString;
Line 14... Line 15...
14
 
15
 
15
import com.extjs.gxt.ui.client.Registry;
16
import com.extjs.gxt.ui.client.Registry;
16
import com.extjs.gxt.ui.client.data.BasePagingLoadConfig;
17
import com.extjs.gxt.ui.client.data.BasePagingLoadConfig;
17
import com.extjs.gxt.ui.client.data.BasePagingLoadResult;
18
import com.extjs.gxt.ui.client.data.BasePagingLoadResult;
Line 34... Line 35...
34
		this.roleId = roleId;
35
		this.roleId = roleId;
35
	}
36
	}
Line 36... Line 37...
36
	
37
	
37
	@Override
38
	@Override
-
 
39
	  public void load(TransformateurJSONaModelData reader, Object loadConfig, AsyncCallback callback, String recherche) {
38
	  public void load(TransformateurJSONaModelData reader, Object loadConfig, AsyncCallback callback, String recherche) {
40
		
39
		  this.reader = reader;
41
			this.reader = reader;
40
		  this.callback = callback;
42
			this.callback = callback;
41
		  this.loadConfig = loadConfig;
43
			this.loadConfig = loadConfig;
42
 
44
 
-
 
45
			BasePagingLoadConfig lc = (BasePagingLoadConfig)loadConfig;		  
43
		  BasePagingLoadConfig lc = (BasePagingLoadConfig)loadConfig;		  
46
		if (!UtilString.isEmpty(this.collectionId))	{  
-
 
47
			mediateur.selectionnerCollectionAPersonne(this, this.collectionId, this.roleId, recherche, lc.getOffset(), lc.getLimit(), sequenceur);
44
		  mediateur.selectionnerCollectionAPersonne(this, this.collectionId, this.roleId, recherche, lc.getOffset(), lc.getLimit(), sequenceur);
48
		}
Line 45... Line 49...
45
	  }
49
	  }
46
 
50
 
47
	@Override
51
	@Override
Line 48... Line 52...
48
	@SuppressWarnings("unchecked")
52
	@SuppressWarnings("unchecked")
49
	public void rafraichir(Object nouvellesDonnees) {	
53
	public void rafraichir(Object nouvellesDonnees) {	
-
 
54
		
50
		
55
		try
51
		try
56
		{
52
		{
-
 
53
			data = nouvellesDonnees;
57
			D donneesRetour = null;
54
			D d = null;
58
			if (nouvellesDonnees!=null) {
55
 
59
				data = nouvellesDonnees;
56
	    	if (reader != null)
60
			   	if (reader != null)
57
	    	{
61
		    	{
58
	    		d = (D) reader.read(loadConfig, data);
62
			   		donneesRetour = (D) reader.read(loadConfig, data);
59
	    	}
63
		    	}
60
	    	else
64
		    	else
61
	    	{
65
		    	{
62
		        d = (D) data;
66
		    		donneesRetour = (D) data;
63
		        if (d instanceof List)
67
			        if (donneesRetour instanceof List)
64
		        {
68
			        {
65
		          d = (D) new ArrayList((List) d);
69
			        	donneesRetour = (D) new ArrayList((List) donneesRetour);
66
		        }
70
			        }
-
 
71
		    	}
67
	    	}
72
			} 
68
 
73
			callback.onSuccess(donneesRetour);
69
			callback.onSuccess(d);
74
			
70
		}
75
		}
71
		catch (Exception e)
76
		catch (Exception e)