Package org.erlide.wrangler.refactoring.duplicatedcode.ui

Examples of org.erlide.wrangler.refactoring.duplicatedcode.ui.DuplicateCodeDetectionInputDialog


    @Override
    protected boolean getUserInput() {
        final Shell shell = PlatformUI.getWorkbench().getDisplay().getActiveShell();

        final DuplicateCodeDetectionInputDialog inputd = new DuplicateCodeDetectionInputDialog(
                shell, "Identical code detection...");
        inputd.open();

        onlyInfile = inputd.onlyInFile();
        minToks = inputd.getMinToks();
        minClones = inputd.getMinClones();

        return inputd.isFinished();
    }
View Full Code Here

TOP

Related Classes of org.erlide.wrangler.refactoring.duplicatedcode.ui.DuplicateCodeDetectionInputDialog

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.