Line 8... |
Line 8... |
8 |
import org.tela_botanica.client.modeles.Configuration;
|
8 |
import org.tela_botanica.client.modeles.Configuration;
|
9 |
import org.tela_botanica.client.modeles.ImageAsynchroneDAO;
|
9 |
import org.tela_botanica.client.modeles.ImageAsynchroneDAO;
|
10 |
import org.tela_botanica.client.modeles.ImageCarnet;
|
10 |
import org.tela_botanica.client.modeles.ImageCarnet;
|
11 |
import org.tela_botanica.client.modeles.ImageUploaderAsynchroneDAO;
|
11 |
import org.tela_botanica.client.modeles.ImageUploaderAsynchroneDAO;
|
12 |
import org.tela_botanica.client.modeles.LienImageAsynchroneDAO;
|
12 |
import org.tela_botanica.client.modeles.LienImageAsynchroneDAO;
|
- |
|
13 |
import org.tela_botanica.client.modeles.ListeDateImageAsynchroneDAO;
|
13 |
import org.tela_botanica.client.modeles.ListeImageAsynchroneDAO;
|
14 |
import org.tela_botanica.client.modeles.ListeImageAsynchroneDAO;
|
14 |
import org.tela_botanica.client.modeles.ListeImageCarnet;
|
15 |
import org.tela_botanica.client.modeles.ListeImageCarnet;
|
15 |
import org.tela_botanica.client.modeles.ListeObservation;
|
16 |
import org.tela_botanica.client.modeles.ListeObservation;
|
16 |
import org.tela_botanica.client.modeles.ListeObservationAsynchroneDAO;
|
17 |
import org.tela_botanica.client.modeles.ListeObservationAsynchroneDAO;
|
17 |
import org.tela_botanica.client.modeles.MotsClesAsynchroneDAO;
|
18 |
import org.tela_botanica.client.modeles.MotsClesAsynchroneDAO;
|
Line 385... |
Line 386... |
385 |
photoData[i][0] = im.getOrdre();
|
386 |
photoData[i][0] = im.getOrdre();
|
386 |
photoData[i][1] = im.getNomOriginal();
|
387 |
photoData[i][1] = im.getNomOriginal();
|
387 |
photoData[i][2] = im.getDate();
|
388 |
photoData[i][2] = im.getDate();
|
388 |
photoData[i][3] = im.getIptcCity();
|
389 |
photoData[i][3] = im.getIptcCity();
|
389 |
photoData[i][4] = im.getMake() + " " + im.getModel();
|
390 |
photoData[i][4] = im.getMake() + " " + im.getModel();
|
390 |
photoData[i][5] = im.getSUrl();
|
391 |
photoData[i][5] = im.getUrlFormatListe();
|
391 |
photoData[i][6] = im.getMUrl();
|
392 |
photoData[i][6] = im.getUrlFormatGalerie();
|
392 |
photoData[i][7] = im.getLUrl();
|
393 |
photoData[i][7] = im.getUrlFormatZoom();
|
393 |
photoData[i][8] = im.getNote();
|
394 |
photoData[i][8] = im.getNote();
|
394 |
photoData[i][9] = im.getId();
|
395 |
photoData[i][9] = im.getId();
|
395 |
photoData[i][10] = im.getTailleImage()[1];
|
396 |
photoData[i][10] = im.getTailleImage()[1];
|
396 |
photoData[i][11] = im.getTailleImage()[0];
|
397 |
photoData[i][11] = im.getTailleImage()[0];
|
397 |
photoData[i][12] = im.getIdsObsAssociees();
|
398 |
photoData[i][12] = im.getIdsObsAssociees();
|
Line 470... |
Line 471... |
470 |
.stringValue();
|
471 |
.stringValue();
|
Line 471... |
Line 472... |
471 |
|
472 |
|
Line 472... |
Line 473... |
472 |
String[] usObj = { mot_cle, id_noeud };
|
473 |
String[] usObj = { mot_cle, id_noeud };
|
473 |
|
474 |
|
474 |
// et on construit l'arbre à partir de la racine (qui est
|
475 |
// et on construit l'arbre à partir de la racine (qui est
|
475 |
// toujoursl e premier élément)
|
476 |
// toujours le premier élément)
|
476 |
if (id_noeud.equals("racine")) {
|
477 |
if (id_noeud.equals("racine")) {
|
477 |
TreeNode root = new TreeNode();
|
478 |
TreeNode root = new TreeNode();
|
478 |
root.setId(id_noeud);
|
479 |
root.setId(id_noeud);
|
Line 923... |
Line 924... |
923 |
NombreObservationAsynchroneDAO noaDAO = new NombreObservationAsynchroneDAO(this);
|
924 |
NombreObservationAsynchroneDAO noaDAO = new NombreObservationAsynchroneDAO(this);
|
924 |
noaDAO.obtenirNombreObservation(r, iMediateur.getIdentifiant(), criteres);
|
925 |
noaDAO.obtenirNombreObservation(r, iMediateur.getIdentifiant(), criteres);
|
Line 925... |
Line 926... |
925 |
|
926 |
|
Line -... |
Line 927... |
- |
|
927 |
}
|
- |
|
928 |
|
- |
|
929 |
public void obtenirDatesImages(Rafraichissable r) {
|
- |
|
930 |
ListeDateImageAsynchroneDAO lDateDao = new ListeDateImageAsynchroneDAO(this);
|
- |
|
931 |
lDateDao.obtenirListeDate(r, iMediateur.getIdentifiant());
|
926 |
}
|
932 |
}
|