Package org.python.pydev.debug.ui

Examples of org.python.pydev.debug.ui.PyPropertyTraceDialog.open()


public class PyPropertyTraceAction extends PyAction implements IWorkbenchWindowActionDelegate {

    public void run(IAction arg0) {
        PyPropertyTraceDialog dialog = new PyPropertyTraceDialog(getShell());
        dialog.setTitle("Enable/Disable Step Into properties");
        if (dialog.open() == PyPropertyTraceDialog.OK) {
            PyPropertyTraceManager.getInstance().setPyPropertyTraceState(dialog.isDisableStepIntoProperties(),
                    dialog.isDisableStepIntoGetter(), dialog.isDisableStepIntoSetter(),
                    dialog.isDisableStepIntoDeleter());
        }
    }
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.