Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1428 Rev 1526
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 27... Line 28...
27
	public ProxyStructures(Sequenceur sequenceur) {
28
	public ProxyStructures(Sequenceur sequenceur) {
28
		super(sequenceur);
29
		super(sequenceur);
29
	}
30
	}
Line 30... Line 31...
30
	
31
	
31
	@Override
32
	@Override
32
	  public void load(TransformateurJSONaModelData reader, Object loadConfig, AsyncCallback callback, String recherche) {
33
	public void load(TransformateurJSONaModelData reader, Object loadConfig, AsyncCallback callback, String recherche) {
33
		  this.reader = reader;
34
		this.reader = reader;
34
		  this.callback = callback;
35
		this.callback = callback;
35
		  this.loadConfig = loadConfig;
36
		this.loadConfig = loadConfig;
36
 
37
 
-
 
38
		BasePagingLoadConfig lc = (BasePagingLoadConfig) loadConfig;
-
 
39
		if (UtilString.isNumber(recherche, false)) {
-
 
40
			mediateur.selectionnerStructureAvecPaginationProgressive(this, recherche, null, null, "array", lc.getOffset(), lc.getLimit(), sequenceur);
37
		  BasePagingLoadConfig lc = (BasePagingLoadConfig)loadConfig;		  
41
		} else {
38
		  mediateur.selectionnerStructure(this, recherche, lc.getOffset(), lc.getLimit(), sequenceur);
42
			mediateur.selectionnerStructure(this, recherche, lc.getOffset(), lc.getLimit(), sequenceur);
-
 
43
		}
Line 39... Line 44...
39
	  }
44
	}
40
 
45
 
41
	@Override
46
	@Override
42
	@SuppressWarnings("unchecked")
-
 
43
	public void rafraichir(Object nouvellesDonnees) {
47
	@SuppressWarnings("unchecked")
44
		
-
 
45
		try
48
	public void rafraichir(Object nouvellesDonnees) {
-
 
49
		try {
46
		{
50
			data = nouvellesDonnees;
47
			data = nouvellesDonnees;
-
 
48
			D d = null;
51
			Debug.log("Dans ProxyStructure:"+data.toString());
49
 
-
 
50
	    	if (reader != null)
52
			D d = null;
51
	    	{
-
 
52
	    		d = (D) reader.read(loadConfig, data);
53
			if (reader != null) {
53
	    	}
-
 
54
	    	else
54
				d = (D) reader.read(loadConfig, data);
55
	    	{
55
			} else {
56
		        d = (D) data;
-
 
57
		        if (d instanceof List)
56
				d = (D) data;
58
		        {
57
				if (d instanceof List) {
59
		          d = (D) new ArrayList((List) d);
58
					d = (D) new ArrayList((List) d);
60
		        }
-
 
61
	    	}
59
				}
62
 
-
 
63
			callback.onSuccess(d);
60
			}
64
		}
-
 
65
		catch (Exception e)
61
			callback.onSuccess(d);
66
		{
62
		} catch (Exception e){
67
	      callback.onFailure(e);
63
			callback.onFailure(e);
68
		}
-
 
69
	}
64
		}
70
 
65
	}