Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5ab360a52681e0edc540bc79ddee9e9a285c0c00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.ui.skynet;

import java.util.Comparator;
import java.util.logging.Level;
import org.eclipse.osee.framework.core.enums.RelationSide;
import org.eclipse.osee.framework.core.exception.OseeCoreException;
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.skynet.core.relation.RelationLink;

/**
 * @author Ryan D. Brooks
 */
public class AlphabeticalRelationComparator implements Comparator<RelationLink> {
   private final RelationSide relationSide;

   public AlphabeticalRelationComparator(RelationSide relationSide) {
      super();
      this.relationSide = relationSide;
   }

   @Override
   public int compare(RelationLink relationLink1, RelationLink relationLink2) {
      try {
         return relationLink1.getArtifact(relationSide).compareTo(relationLink2.getArtifact(relationSide));
      } catch (OseeCoreException ex) {
         OseeLog.log(SkynetGuiPlugin.class, Level.SEVERE, ex);
         return 0;
      }
   }
}

Back to the top