Package org.python.pydev.debug.ui

Examples of org.python.pydev.debug.ui.PyPropertyTraceDialog


import org.python.pydev.editor.actions.PyAction;

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

Related Classes of org.python.pydev.debug.ui.PyPropertyTraceDialog

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.