Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2d8c41105ab367d04f5b78998ec63a13db18d891 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.eclipse.osee.ote.rest.internal;

import java.util.Comparator;

import org.eclipse.osee.ote.rest.model.OTEConfigurationItem;

public class OTEConfigItemSort implements Comparator<OTEConfigurationItem> {

   @Override
   public int compare(OTEConfigurationItem arg0, OTEConfigurationItem arg1) {
      return arg0.getBundleName().compareTo(arg1.getBundleName());
   }

}

Back to the top