Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 89 Rev 140
Line 40... Line 40...
40
		super() ;
40
		super() ;
41
		for (int i = 0; i < ent.length; i++) 
41
		for (int i = 0; i < ent.length; i++) 
42
		{		
42
		{		
43
			if(ent[i] != null && ent[i] instanceof EntiteGeographiqueObservation)
43
			if(ent[i] != null && ent[i] instanceof EntiteGeographiqueObservation)
44
			{
44
			{
45
				
-
 
46
				this.put(ent[i].getLocation()+ent[i].getLieuDit(),ent[i]);
45
				this.put(ent[i].getIdLocation()+ent[i].getLieuDit(),ent[i]);
47
			}
46
			}
48
		}
47
		}
49
	}
48
	}
-
 
49
	
-
 
50
	public void put(EntiteGeographiqueObservation value) {
-
 
51
		this.put(value.getIdLocation()+value.getLieuDit(),value);
-
 
52
	}
Line 50... Line 53...
50
		
53