Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1513 Rev 1526
Line 145... Line 145...
145
	//+----------------------------------------------------------------------------------------------------------------+
145
	//+----------------------------------------------------------------------------------------------------------------+
Line 146... Line 146...
146
 
146
 
147
	public void selectionnerStructure(Rafraichissable vueARafraichir, String projetId, String structureId, String nomStructure, int start, int nbElements, Integer seqId) {
147
	public void selectionnerStructure(Rafraichissable vueARafraichir, String projetId, String structureId, String nomStructure, int start, int nbElements, Integer seqId) {
148
		// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation 
148
		// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation 
149
		StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
149
		StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
-
 
150
		sDao.selectionner(false, projetId, structureId, nomStructure, null, start, nbElements, seqId);
-
 
151
	}
-
 
152
	
-
 
153
	public void selectionnerStructureAvecPaginationProgressive(Rafraichissable vueARafraichir, String projetId, String structureId, String nomStructure, String formatRetour, int start, int nbElements, Integer seqId) {
-
 
154
		// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation 
-
 
155
		StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
150
		sDao.selectionner(false, projetId, structureId, nomStructure, start, nbElements, seqId);
156
		sDao.selectionner(true, projetId, structureId, nomStructure, formatRetour, start, nbElements, seqId);
Line 151... Line 157...
151
	}
157
	}
152
	
158
	
153
	public void selectionnerStructure(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Integer seqId) {
159
	public void selectionnerStructure(Rafraichissable vueARafraichir, String recherche, int start, int nbElements, Integer seqId) {
154
		// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation 
160
		// Gestion des données des tables coel_structure, coel_structure_conservation et coel_structure_valorisation 
155
		StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
161
		StructureAsyncDao sDao = new StructureAsyncDao(vueARafraichir);
Line 156... Line 162...
156
		sDao.selectionner(true, null, null, recherche, start, nbElements, seqId);
162
		sDao.selectionner(true, null, null, recherche, null, start, nbElements, seqId);
157
	}
163
	}
158
	
164