Package org.python.pydev.editor.actions

Examples of org.python.pydev.editor.actions.OfflineActionTarget


    public Object getAdapter(Class adapter) {
        if (OfflineActionTarget.class.equals(adapter)) {
            if (fOfflineActionTarget == null) {
                IStatusLineManager manager = getStatusLineManager();
                if (manager != null)
                    fOfflineActionTarget = (getSourceViewer() == null ? null : new OfflineActionTarget(
                            getSourceViewer(), manager, this));
            }
            return fOfflineActionTarget;
        }
View Full Code Here

TOP

Related Classes of org.python.pydev.editor.actions.OfflineActionTarget

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.