Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 891 Rev 949
Line 7... Line 7...
7
import java.util.LinkedList;
7
import java.util.LinkedList;
8
import java.util.Map;
8
import java.util.Map;
9
import java.util.Set;
9
import java.util.Set;
10
import java.util.TreeSet;
10
import java.util.TreeSet;
Line -... Line 11...
-
 
11
 
11
 
12
import org.tela_botanica.client.util.Debug;
Line 12... Line 13...
12
import org.tela_botanica.client.util.UtilArray;
13
import org.tela_botanica.client.util.UtilArray;
13
 
14
 
14
import com.extjs.gxt.ui.client.core.FastMap;
15
import com.extjs.gxt.ui.client.core.FastMap;
Line 373... Line 374...
373
		Set<String> proprietes = this.getProperties().keySet();
374
		Set<String> proprietes = this.getProperties().keySet();
374
		TreeSet<String> proprietesTriees = new TreeSet<String>(proprietes);
375
		TreeSet<String> proprietesTriees = new TreeSet<String>(proprietes);
375
		for (Iterator<String> it = proprietesTriees.iterator(); it.hasNext();) {
376
		for (Iterator<String> it = proprietesTriees.iterator(); it.hasNext();) {
376
			String cle = it.next();
377
			String cle = it.next();
377
			if (this.get(cle) != null && !this.get(cle).equals("")) {
378
			if (this.get(cle) != null && !this.get(cle).equals("")) {
378
				sortie += cle+" : "+this.get(cle)+"\n";
379
				sortie += cle+" : "+this.get(cle).toString()+"\n";
379
			}
380
			}
380
		}
381
		}
Line 381... Line 382...
381
		
382
		
382
		return sortie;
383
		return sortie;
Line 397... Line 398...
397
					retour = false;
398
					retour = false;
398
					break;
399
					break;
399
				}
400
				}
400
			}
401
			}
401
		}
402
		}
402
		
-
 
403
		return retour;
403
		return retour;
404
	}
404
	}
Line 405... Line 405...
405
	
405
	
406
	public Object cloner(BaseModelData nouvelleInstance) {
406
	public Object cloner(BaseModelData nouvelleInstance) {