Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1482 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 32... Line 33...
32
		this.collectionId = collectionId;
33
		this.collectionId = collectionId;
33
	}
34
	}
Line 34... Line 35...
34
	
35
	
35
	@Override
36
	@Override
36
	  public void load(TransformateurJSONaModelData reader, Object loadConfig, AsyncCallback callback, String recherche) {
37
	  public void load(TransformateurJSONaModelData reader, Object loadConfig, AsyncCallback callback, String recherche) {
37
		  this.reader = reader;
38
			this.reader = reader;
38
		  this.callback = callback;
39
			this.callback = callback;
Line 39... Line 40...
39
		  this.loadConfig = loadConfig;
40
			this.loadConfig = loadConfig;
-
 
41
 
-
 
42
			BasePagingLoadConfig lc = (BasePagingLoadConfig)loadConfig;		  
40
 
43
		
-
 
44
		if (!UtilString.isEmpty(this.collectionId))	{
41
		  BasePagingLoadConfig lc = (BasePagingLoadConfig)loadConfig;		  
45
			mediateur.selectionnerCollectionAPublication(this, this.collectionId, recherche, lc.getOffset(), lc.getLimit(), sequenceur);
Line 42... Line 46...
42
		  mediateur.selectionnerCollectionAPublication(this, this.collectionId, recherche, lc.getOffset(), lc.getLimit(), sequenceur);
46
		}
43
	  }
47
	  }
44
 
48
 
Line 45... Line 49...
45
	@Override
49
	@Override
46
	@SuppressWarnings("unchecked")
50
	@SuppressWarnings("unchecked")
-
 
51
	public void rafraichir(Object nouvellesDonnees) {	
47
	public void rafraichir(Object nouvellesDonnees) {	
52
		
48
		
53
		try
49
		try
-
 
50
		{
54
		{
51
			data = nouvellesDonnees;
55
			D donneesRetour = null;
52
			D d = null;
56
			if (nouvellesDonnees!=null) {
53
 
57
				data = nouvellesDonnees;
54
	    	if (reader != null)
58
			   	if (reader != null)
55
	    	{
59
		    	{
56
	    		d = (D) reader.read(loadConfig, data);
60
			   		donneesRetour = (D) reader.read(loadConfig, data);
57
	    	}
61
		    	}
58
	    	else
62
		    	else
59
	    	{
63
		    	{
60
		        d = (D) data;
64
		    		donneesRetour = (D) data;
61
		        if (d instanceof List)
65
			        if (donneesRetour instanceof List)
62
		        {
66
			        {
63
		          d = (D) new ArrayList((List) d);
67
			        	donneesRetour = (D) new ArrayList((List) donneesRetour);
-
 
68
			        }
64
		        }
69
		    	}
65
	    	}
70
			} 
66
 
71
			callback.onSuccess(donneesRetour);
67
			callback.onSuccess(d);
72
			
68
		}
73
		}