Package org.python.pydev.navigator.elements

Examples of org.python.pydev.navigator.elements.ISortedElement


            return -1;
        }

        //now, on to the priorities (if both have different classes)
        if (e1 instanceof ISortedElement && e2 instanceof ISortedElement) {
            ISortedElement iSortedElement1 = (ISortedElement) e1;
            int r1 = iSortedElement1.getRank();
            ISortedElement iSortedElement2 = (ISortedElement) e2;
            int r2 = iSortedElement2.getRank();
            if (r1 == r2) {
                if (e1 instanceof IWrappedResource && e2 instanceof IWrappedResource) {
                    return super.compare(viewer, ((IWrappedResource) e1).getActualObject(),
                            ((IWrappedResource) e2).getActualObject());
View Full Code Here

TOP

Related Classes of org.python.pydev.navigator.elements.ISortedElement

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.