~crf-team/crf-irp/crf-irp

« back to all changes in this revision

Viewing changes to JavaSource/fr/croixrouge/rdp/model/monitor/rowMapper/EquipierRowMapper.java

  • Committer: Thomas
  • Date: 2010-03-10 23:55:46 UTC
  • Revision ID: thomas@daisybox-port-20100310235546-23635dk6x5asb1ca
Upgrade ExtJs 3.1.1
Upgrade Spring 3.0.1 + dependencies
Change Jawr JS post processor : YUI
Upgrade to last build of dwr 3 trunk 69 revision 3019(after build 116), upgrade jawr-dwr plugin 1.4 unofficiale from jose noheda, Jawr 3.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
import fr.croixrouge.rdp.model.monitor.Delegation;
9
9
import fr.croixrouge.rdp.model.monitor.Equipier;
10
10
 
11
 
public class EquipierRowMapper extends RowMapperHelper implements RowMapper
 
11
public class EquipierRowMapper extends RowMapperHelper implements RowMapper<Equipier>
12
12
{
13
13
  private boolean fetchRoleInDispositif = false;
14
14
  private boolean fetchDelegation       = false;
23
23
    this.fetchDelegation       = fetchDelegation;
24
24
  }
25
25
 
26
 
  public Object mapRow(ResultSet rs, int rowNum) throws SQLException
 
26
  public Equipier mapRow(ResultSet rs, int rowNum) throws SQLException
27
27
  {
28
28
    Equipier equipier = new Equipier();
29
29