}
htmlStream.append("\" >\n");
htmlStream.append("<option value=''> </option>\n");
// get the lov associated to the parameter
Parameter par = biparam.getParameter();
ModalitiesValue lov = par.getModalityValue();
// build the ILovDetail object associated to the lov
String lovProv = lov.getLovProvider();
ILovDetail lovProvDet = LovDetailFactory.getLovFromXML(lovProv);
// get the result of the lov
IEngUserProfile profile = getProfile();
// String lovResult = biparam.getLovResult();
// if ((lovResult == null) || (lovResult.trim().equals(""))) {
// lovResult = lovProvDet.getLovResult(profile);
// }
String lovResult = "";
Integer biparId = biparam.getId();
String biparIdStr = biparId.toString();
Integer parId = par.getId();
Integer lovId = lov.getId();
Integer parusecorrId = null;
IParameterUseDAO parusedao = DAOFactory.getParameterUseDAO();
List paruses = parusedao.loadParametersUseByParId(parId);
Iterator iterParuse = paruses.iterator();