Package com.structis.fichesst.client.util

Examples of com.structis.fichesst.client.util.NameValuePair


          + numberFormat.format(progressDto.getMois()) + Constants.SEPRATE + numberFormat.format(progressDto.getCumule2()) + Constants.SEPRATE + numberFormat.format(progressDto.getMois2())
          + Constants.SEPRATE;
    }
    if (process != null && process.length() > 0) {
      process = process.substring(0, process.length() - Constants.SEPRATE.length());
      values.add(new NameValuePair(ConstantClient.PROCESSDTO_ID_STR, process));
    }
   
    TextField<String> txttotalsituation = (TextField<String>) ComponentManager.get().get("AVANCEMENTS_PANEL_TXTTOTALSITUATION_ID");
    totalsituation = txttotalsituation.getValue();
    values.add(new NameValuePair("totalsituation", totalsituation));
   
    // Grid 2
    TextField<String> txtdetail_des_retenues_appliques = (TextField<String>) ComponentManager.get().get("AVANCEMENTS_PANEL_TXTDETAIL_DES_RETENUES_APPLIQUES_ID");
    String detail_des_retenues_appliques = txtdetail_des_retenues_appliques.getValue();
    values.add(new NameValuePair("detail_des_retenues_appliques", detail_des_retenues_appliques));
   
    // Grid 3
    TextField<String> txtgrid_3_report = (TextField<String>) ComponentManager.get().get("AVANCEMENTS_PANEL_TXTGRID3REPORT_ID");
    String grid_3_report = txtgrid_3_report.getValue();
    values.add(new NameValuePair("grid_3_report", grid_3_report));
   
    TextField<String> txtEtatAvancement = (TextField<String>) ComponentManager.get().get("AVANCEMENTS_PANEL_TXT_ETATAVANCEMENT_ID");
    values.add(new NameValuePair("etatAvancement", txtEtatAvancement.getValue()));
   
    TextArea txtAvancementComment = (TextArea) ComponentManager.get().get("AVANCEMENTSPANEL_COMMENT");
    values.add(new NameValuePair("commentaire", txtAvancementComment.getValue() == null ? "" : txtAvancementComment.getValue()));
  }
View Full Code Here

TOP

Related Classes of com.structis.fichesst.client.util.NameValuePair

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.