Package eas.miscellaneous.system.windowFrames

Examples of eas.miscellaneous.system.windowFrames.CheckboxDialog


                    choices.add(gif);
                    aktiv.add(false);
                    choices.add(txt);
                    aktiv.add(false);
                   
                    CheckboxDialog dia = new CheckboxDialog(
                            this,
                            "Geben Sie an, welche Dateitypen aus"
                                + " dem Verzeichnis '"
                                + this.pars.getStdDirectory()
                                + "' gelöscht werden sollen",
                            "Löschen best�tigen",
                            butts,
                            choices,
                            aktiv);
                   
                    dia.setVisible(true);
                   
                    if (dia.getResult().equals("OK")) {
                        if (dia.getAuswahl().contains(tmp)) {
                            StaticMethods.deleteALL(
                                    eas.startSetup.marbBuilder.ConstantsGraphVis.TEMP_ENDUNG,
                                    this.pars);
                        }
                       
                        if (dia.getAuswahl().contains(con)) {
                            StaticMethods.deleteALL(
                                    eas.startSetup.marbBuilder.ConstantsGraphVis.BED_ENDUNG,
                                    this.pars);
                        }
                       
                        if (dia.getAuswahl().contains(koo)) {
                            StaticMethods.deleteALL(
                                    eas.startSetup.marbBuilder.ConstantsGraphVis.KOORD_ENDUNG,
                                    this.pars);
                        }

                        if (dia.getAuswahl().contains(gra)) {
                            StaticMethods.deleteALL(
                                    eas.startSetup.marbBuilder.ConstantsGraphVis.GRAPH_ENDUNG,
                                    this.pars);
                        }

                        if (dia.getAuswahl().contains(tra)) {
                            StaticMethods.deleteALL(
                                    eas.startSetup.marbBuilder.ConstantsGraphVis.TRANS_ENDUNG,
                                    this.pars);
                        }

                        if (dia.getAuswahl().contains(png)) {
                            StaticMethods.deleteALL(
                                    eas.startSetup.marbBuilder.ConstantsGraphVis.PNG_ENDUNG,
                                    this.pars);
                        }

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

                        if (dia.getAuswahl().contains(gz)) {
                            StaticMethods.deleteALL(
                                    "gz",
                                    this.pars);
                        }
                       
                        if (dia.getAuswahl().contains(gif)) {
                            StaticMethods.deleteALL(
                                    "gif",
                                    this.pars);
                        }

                        if (dia.getAuswahl().contains(txt)) {
                            StaticMethods.deleteALL(
                                    "txt",
                                    this.pars);
                        }
                    }
View Full Code Here

TOP

Related Classes of eas.miscellaneous.system.windowFrames.CheckboxDialog

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.