Package com.alibaba.antx.config.gui.dialog

Examples of com.alibaba.antx.config.gui.dialog.SettingsDialog


        this.gui = gui;
    }

    public void run() {
        SettingsDialog od = new SettingsDialog(gui);

        if (od.open() == Dialog.OK) {
            gui.setOpenFiles(od.getFiles());
            gui.setDescriptorPatterns(od.getDescriptorPatterns());
            gui.setPackagePatterns(od.getPackagePatterns());

            open();
        }
    }
View Full Code Here

TOP

Related Classes of com.alibaba.antx.config.gui.dialog.SettingsDialog

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.