Codebase list jd-gui / 0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstream services / src / main / java / org / jd / gui / model / container / ContainerEntryComparator.java
0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstream

Tree @0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstream (Download .tar.gz)

ContainerEntryComparator.java @0af4a626-0b34-4685-a8a4-c18e8bd66f2d/upstreamraw · history · blame

/*
 * Copyright (c) 2008-2019 Emmanuel Dupuy.
 * This project is distributed under the GPLv3 license.
 * This is a Copyleft license that gives the user the right to use,
 * copy and modify the code freely for non-commercial purposes.
 */

package org.jd.gui.model.container;

import org.jd.gui.api.model.Container;

import java.util.Comparator;

/**
 * Directories before files, sorted by path
 */
public class ContainerEntryComparator implements Comparator<Container.Entry> {
    public static final ContainerEntryComparator COMPARATOR = new ContainerEntryComparator();

    public int compare(Container.Entry e1, Container.Entry e2) {
        if (e1.isDirectory()) {
            if (!e2.isDirectory()) {
                return -1;
            }
        } else {
            if (e2.isDirectory()) {
                return 1;
            }
        }
        return e1.getPath().compareTo(e2.getPath());
    }
}