/***************************************************************************** * Copyright (c) 2010 CEA LIST. * * * 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: * Saadia Dhouib saadia.dhouib@cea.fr * *****************************************************************************/ package org.eclipse.papyrus.uml.diagram.communication.navigator; import org.eclipse.jface.viewers.ViewerSorter; import org.eclipse.papyrus.uml.diagram.communication.part.UMLVisualIDRegistry; /** * @generated */ public class UMLNavigatorSorter extends ViewerSorter { /** * @generated */ private static final int GROUP_CATEGORY = 8018; /** * @generated */ public int category(Object element) { if(element instanceof UMLNavigatorItem) { UMLNavigatorItem item = (UMLNavigatorItem)element; return UMLVisualIDRegistry.getVisualID(item.getView()); } return GROUP_CATEGORY; } }