Package org.python.pydev.overview_ruler

Examples of org.python.pydev.overview_ruler.MinimapOverviewRuler$RedrawJob


    }

    @Override
    protected IOverviewRuler createOverviewRuler(ISharedTextColors sharedColors) {
        if (MinimapOverviewRulerPreferencesPage.useMinimap()) {
            IOverviewRuler ruler = new MinimapOverviewRuler(getAnnotationAccess(), sharedColors);

            Iterator e = getAnnotationPreferences().getAnnotationPreferences().iterator();
            while (e.hasNext()) {
                AnnotationPreference preference = (AnnotationPreference) e.next();
                if (preference.contributesToHeader()) {
                    ruler.addHeaderAnnotationType(preference.getAnnotationType());
                }
            }
            return ruler;
        } else {
            return super.createOverviewRuler(sharedColors);
View Full Code Here

TOP

Related Classes of org.python.pydev.overview_ruler.MinimapOverviewRuler$RedrawJob

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.