Examples of NaOpNuLine


Examples of ch.bfh.egov.internetapps.common.NaOpNuLine

    AutoGrowingList l = form.getNaOpNuLines();
    Iterator it = l.iterator();
    Double values = 0.0;
    boolean fragebogenGewichtung = false;
    while (it.hasNext()) {
      NaOpNuLine line = (NaOpNuLine) it.next();
      if (line != null) {
        Integer nId = line.getNutzenkriteriumId();
        logger.debug("nutzenkriteriumId=" + nId);

        // Level der Abstufung holen
        Integer levelAbstufung = line.getAbstufung();
        logger.debug("Level der Abstufung: " + levelAbstufung);
        Double valueAbstufung = Constants.NA_OP_NU_MATRIX[stufen - 2][levelAbstufung - 1];
        logger.debug("Constants.NA_OP_NU_MATRIX["
            + (stufen - 2) + "][" + (levelAbstufung - 1) + "] = "
            + valueAbstufung);

        // Level der Gewichtung holen
        Integer levelGewichtung = line.getGewichtung();
        logger.debug("Level der Gewichtung: " + levelGewichtung);

        // Bei Gewichtung �ber Fragebogen
        if (levelGewichtung != null) {
          fragebogenGewichtung = true;
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.