Examples of Inmoble_Impl


Examples of com.insacosa.interfaces.Inmoble_Impl

    // 1.- CARACTERISTIQUES INMOBLE
   
    // afegim les coleccions (fotos,caracteristiques,...)
    facesContext = FacesContext.getCurrentInstance(); // Contexte JSF
    DragDropBean<?> dragDropBean = (DragDropBean<?>) facesContext.getApplication().evaluateExpressionGet(facesContext, "#{dragDropBeanCaract}", DragDropBean.class);
    Inmoble_Impl r = new Inmoble_Impl();
   
    Iterator<?> it = dragDropBean.getTarget().iterator();
    while (it.hasNext())
    {
      CaracteristicaForm c = (CaracteristicaForm) it.next();
 
      Caracteristiques caracteristica = new Caracteristiques();
     
      //////////caracteristica.setKey(c.getKey());

      caracteristica = (Caracteristiques) r.caractPerKey(c.getKey());
           
      inmoble.getCaracteristiqueses().add(caracteristica);
 
    }
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.