Package com.insacosa.vo

Examples of com.insacosa.vo.InmobleForm


             
              panelGroup.getChildren().add(butoneraNum)
             
              // NOTA : EN EL MOMENT DE CREAR UNA NOVA COLUMNA DE TIPUS NUMERIC (AMB OPERADORS)
              //INICIALITZEM L'OPERADOR A per exemple "ge"
              InmobleForm inmobleForm = (InmobleForm)Utils.accessBeanFromFacesContext("inmobleForm", FacesContext.getCurrentInstance());
              inmobleForm.getColumnesOperacions().put(idColumna, "ge");
             
             
             
              break;
             
View Full Code Here


    private void publishStateChangeMessage(String canal, String action) {
        try {
          topicsContext = TopicsContext.lookup();
         
          FacesContext context = FacesContext.getCurrentInstance();
          InmobleForm inmobleForm = (InmobleForm) context.getApplication().evaluateExpressionGet(context, "#{inmobleForm}", InmobleForm.class);
          //UserForm comprador = (UserForm) context.getApplication().evaluateExpressionGet(context, "#{userForm}", UserForm.class);
         
          // ho enviem a la cua de l'usuari del venedor
            topicsContext.publish(new TopicKey("inmobles", inmobleForm.getVenedor() + canal), "solicitud de inmueble por comprador ");
        } catch (MessageException e) {
            LOGGER.error(e.getMessage(), e);
        }
    }
View Full Code Here

  /*
     * Passa d'un objecte Hibernate (HBM) a objecte de Formulari
     */
    public static InmobleForm passarHBMtoForm(Inmobles inmoble)
    {
      InmobleForm inmobleForm = new InmobleForm();
     
      inmobleForm.setKey(inmoble.getInmobleKey());
    inmobleForm.setNom(inmoble.getNom());
    inmobleForm.setAdreca(inmoble.getAdreca());
     
    ////////////inmobleForm.setProvincia(inmoble.getProvincies().getKey());

    //inmobleForm.setKeyTipus(inmoble.getTipus().getKey());
   
    //inmobleForm.setLloguer(inmoble.getLloguer());
    inmobleForm.setNumero(inmoble.getNumero());
    inmobleForm.setPlanta(inmoble.getPlanta());
    inmobleForm.setPuerta(inmoble.getPuerta());
    inmobleForm.setMetres(inmoble.getMetres());
    inmobleForm.setPreu(inmoble.getPreu());
     
    // Objecte venedor
     
    //inmobleForm.setVenedor(inmoble.getUsuaris().getUsuariKey());
   
    inmobleForm.setVisitat(inmoble.isVisitat());
     
    // carreguem les fotos de l'inmoble
    Set<Fotos> fotos = inmoble.getFotoses();
   
    List<FotoForm> fotosForm = new ArrayList<FotoForm>();
   
    Iterator<?> it = fotos.iterator();
    while (it.hasNext())
    {
      FotoForm fotoForm = new FotoForm();
     
      Fotos foto = (Fotos) it.next();
     
      //fotoForm.setKey(foto.getKey());
      //fotoForm.setImatge(foto.getImatge());
      fotoForm.setDescripcio(foto.getDescripcio());
      //fotoForm.setKeyInmoble(foto.getInmobles().getInmobleKey());
     
      fotosForm.add(fotoForm);
    }
   
    inmobleForm.setFotos(fotosForm);
   
    return inmobleForm;
     
    }
View Full Code Here

      
          /* OPCIO 2 */
        /*---------*/
            FacesContext facesContext = FacesContext.getCurrentInstance(); // Contexte JSF
        InmobleForm inmobleForm = (InmobleForm) facesContext.getApplication().evaluateExpressionGet(facesContext, "#{inmobleForm}", InmobleForm.class);
       
        String sql = cercaTabular(inmobleForm);
        this.cachedItems = datatableToList(sql, range);
       
       
View Full Code Here

TOP

Related Classes of com.insacosa.vo.InmobleForm

Copyright © 2018 www.massapicom. 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.