Examples of Ankreuzdialog


Examples of fmg.fmg8.graphVis.fensterDialoge.Ankreuzdialog

                    choices.add(gz);
                    aktiv.add(false);
                    choices.add(gif);
                    aktiv.add(false);
                   
                    Ankreuzdialog dia = new Ankreuzdialog(
                            this,
                            "Geben Sie an, welche Dateitypen aus"
                                + " dem Verzeichnis '"
                                + this.pars.getStdPfad()
                                + "' gel�scht werden sollen",
                            "L�schen best�tigen",
                            butts,
                            choices,
                            aktiv);
                   
                    dia.setVisible(true);
                   
                    if (dia.getResult().equals("OK")) {
                        if (dia.getAuswahl().contains(tmp)) {
                            SonstMeth.deleteALL(
                                    fmg.fmg8.graphVis.Konstanten.TEMP_ENDUNG,
                                    this.pars);
                        }
                       
                        if (dia.getAuswahl().contains(con)) {
                            SonstMeth.deleteALL(
                                    fmg.fmg8.graphVis.Konstanten.BED_ENDUNG,
                                    this.pars);
                        }
                       
                        if (dia.getAuswahl().contains(koo)) {
                            SonstMeth.deleteALL(
                                    fmg.fmg8.graphVis.Konstanten.KOORD_ENDUNG,
                                    this.pars);
                        }

                        if (dia.getAuswahl().contains(gra)) {
                            SonstMeth.deleteALL(
                                    fmg.fmg8.graphVis.Konstanten.GRAPH_ENDUNG,
                                    this.pars);
                        }

                        if (dia.getAuswahl().contains(tra)) {
                            SonstMeth.deleteALL(
                                    fmg.fmg8.graphVis.Konstanten.TRANS_ENDUNG,
                                    this.pars);
                        }

                        if (dia.getAuswahl().contains(png)) {
                            SonstMeth.deleteALL(
                                    fmg.fmg8.graphVis.Konstanten.PNG_ENDUNG,
                                    this.pars);
                        }

                        if (dia.getAuswahl().contains(dat)) {
                            SonstMeth.deleteALL(
                                    "dat",
                                    this.pars);
                        }

                        if (dia.getAuswahl().contains(gz)) {
                            SonstMeth.deleteALL(
                                    "gz",
                                    this.pars);
                        }
                       
                        if (dia.getAuswahl().contains(gif)) {
                            SonstMeth.deleteALL(
                                    "gif",
                                    this.pars);
                        }
                    }
View Full Code Here

Examples of fmg.fmg8.graphVis.fensterDialoge.Ankreuzdialog

                    aktiv.add(false);
                    choices.add(gz);
                    aktiv.add(false);

                   
                    Ankreuzdialog dia = new Ankreuzdialog(
                            this,
                            "Geben Sie an, welche Dateitypen aus"
                                + " dem Verzeichnis '"
                                + this.pars.getStdPfad()
                                + "' gel�scht werden sollen",
                            "L�schen best�tigen",
                            butts,
                            choices,
                            aktiv);
                   
                    dia.setVisible(true);
                   
                    if (dia.getResult().equals("OK")) {
                        if (dia.getAuswahl().contains(tmp)) {
                            SonstMeth.deleteALL(
                                    fmg.fmg8.graphVis.Konstanten.TEMP_ENDUNG,
                                    this.pars);
                        }
                       
                        if (dia.getAuswahl().contains(con)) {
                            SonstMeth.deleteALL(
                                    fmg.fmg8.graphVis.Konstanten.BED_ENDUNG,
                                    this.pars);
                        }
                       
                        if (dia.getAuswahl().contains(koo)) {
                            SonstMeth.deleteALL(
                                    fmg.fmg8.graphVis.Konstanten.KOORD_ENDUNG,
                                    this.pars);
                        }

                        if (dia.getAuswahl().contains(gra)) {
                            SonstMeth.deleteALL(
                                    fmg.fmg8.graphVis.Konstanten.GRAPH_ENDUNG,
                                    this.pars);
                        }

                        if (dia.getAuswahl().contains(tra)) {
                            SonstMeth.deleteALL(
                                    fmg.fmg8.graphVis.Konstanten.TRANS_ENDUNG,
                                    this.pars);
                        }

                        if (dia.getAuswahl().contains(png)) {
                            SonstMeth.deleteALL(
                                    fmg.fmg8.graphVis.Konstanten.PNG_ENDUNG,
                                    this.pars);
                        }

                        if (dia.getAuswahl().contains(dat)) {
                            SonstMeth.deleteALL(
                                    "dat",
                                    this.pars);
                        }

                        if (dia.getAuswahl().contains(gz)) {
                            SonstMeth.deleteALL(
                                    "gz",
                                    this.pars);
                        }
                    }
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.