Subversion Repositories eFlore/Applications.coel

Rev

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

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