Examples of SinglePar


Examples of fmg.fmg8.statistik.SinglePar

            }
        }

        // Eintragen der weiteren hervorgehobenen Parameter:
        for (int i = 0; i < this.paramListe.getModel().getSize(); i++) {
            SinglePar sPar
                = (SinglePar) this.paramListe.getModel().getElementAt(i);
            if (sPar.isChanged() && !this.contains(
                    this.pars.getHervorPar(),
                    sPar.getParNam())) {
                hervorString += "," + sPar.getParNam();
            }
            if (sPar.getParNam().equalsIgnoreCase(Konstanten.HERVOR_PAR_ATT)) {
                hervorNum = i;
            }
        }
       
        if (hervorNum >= 0) {
View Full Code Here

Examples of fmg.fmg8.statistik.SinglePar

    private void setzeChanged(final int num) {
        if (num < 0) {
            return;
        }
       
        SinglePar p = (SinglePar) this.paramListe.getModel().getElementAt(num);
       
        p.setChanged();
        this.paramListe.repaint();
    }
View Full Code Here

Examples of fmg.fmg8.statistik.SinglePar

    /**
     * Setzt, dass alle Elemente die Kategorieanzeige umschalten.
     */
    private void invertiereAlleKat() {
        SinglePar p;
       
        for (int i = 0; i < this.paramListe.getModel().getSize(); i++) {
            p = (SinglePar) this.paramListe.getModel().getElementAt(i);
            p.setKategorieAnzeigen((p.isKategorieAnzeigen() + 1) % 4);
        }
       
        this.paramListe.repaint();
    }
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.