All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.citytechinc.cq.component.dialog.DialogElementComparator Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package com.citytechinc.cq.component.dialog;

import com.citytechinc.cq.component.xml.XmlElement;

import java.util.Comparator;

public class DialogElementComparator implements Comparator {

    public int compare(XmlElement xe1, XmlElement xe2) {
        DialogElement de1 = (DialogElement) xe1;
        DialogElement de2 = (DialogElement) xe2;
        return Double.compare(de1.getRanking(), de2.getRanking());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy