Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 140 Rev 258
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
				this.put(ent[i].getIdLocation()+ent[i].getLieuDit(),ent[i]);
45
				this.put(ent[i].hashCode()+"",ent[i]);
46
			}
46
			}
47
		}
47
		}
48
	}
48
	}
Line 49... Line 49...
49
	
49
	
50
	public void put(EntiteGeographiqueObservation value) {
50
	public void put(EntiteGeographiqueObservation value) {
51
		this.put(value.getIdLocation()+value.getLieuDit(),value);
51
		this.put(value.hashCode()+"",value);
Line 52... Line 52...
52
	}
52
	}