Line 95... |
Line 95... |
95 |
private ContenuVue panneauCentre = null;
|
95 |
private ContenuVue panneauCentre = null;
|
96 |
private StatutVue panneauSud = null;
|
96 |
private StatutVue panneauSud = null;
|
Line 97... |
Line 97... |
97 |
|
97 |
|
98 |
private IdentificationFenetre fenetreIdentification = null;
|
98 |
private IdentificationFenetre fenetreIdentification = null;
|
- |
|
99 |
private int nbElements = Integer.valueOf(((Dictionary) Dictionary.getDictionary("configuration")).get("nbElementsPage"));
|
99 |
private int nbElements = Integer.valueOf(((Dictionary) Dictionary.getDictionary("configuration")).get("nbElementsPage"));
|
100 |
|
100 |
public Mediateur() {
|
101 |
public Mediateur() {
|
101 |
// Enregistrement du Médiateur dans le Registre
|
102 |
// Enregistrement du Médiateur dans le Registre
|
Line 102... |
Line 103... |
102 |
Registry.register(RegistreId.MEDIATEUR, this);
|
103 |
Registry.register(RegistreId.MEDIATEUR, this);
|
Line 734... |
Line 735... |
734 |
MessageBox.confirm("Supprimer une collection", message, listenerSuppression);
|
735 |
MessageBox.confirm("Supprimer une collection", message, listenerSuppression);
|
735 |
}
|
736 |
}
|
736 |
}
|
737 |
}
|
Line 737... |
Line 738... |
737 |
|
738 |
|
738 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId, String nom) {
|
- |
|
739 |
|
- |
|
740 |
System.out.println(nbElements);
|
739 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId, String nom) {
|
741 |
selectionnerCollection(vueARafraichir, collectionId, nom, 0, nbElements);
|
740 |
selectionnerCollection(vueARafraichir, collectionId, nom, 0, -1);
|
Line 742... |
Line 741... |
742 |
}
|
741 |
}
|
743 |
|
742 |
|
744 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId, String nom, int start, int nbElements) {
|
743 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId, String nom, int start, int nbElements) {
|
Line 745... |
Line 744... |
745 |
modele.selectionnerCollection(vueARafraichir, getProjetId(), collectionId, nom, start, this.nbElements);
|
744 |
modele.selectionnerCollection(vueARafraichir, getProjetId(), collectionId, nom, start, nbElements);
|
746 |
}
|
745 |
}
|
747 |
|
746 |
|
Line 748... |
Line 747... |
748 |
public void selectionnerCollectionParProjet(Rafraichissable vueARafraichir, String projetId) {
|
747 |
public void selectionnerCollectionParProjet(Rafraichissable vueARafraichir, String projetId) {
|
749 |
modele.selectionnerCollection(vueARafraichir, projetId, null, null, 0, nbElements);
|
748 |
modele.selectionnerCollection(vueARafraichir, projetId, null, null, 0, -1);
|
750 |
}
|
749 |
}
|