1 /*******************************************************************************
\r
2 * Copyright (c) 2007, 2012 Association for Decentralized Information Management in
\r
4 * All rights reserved. This program and the accompanying materials
\r
5 * are made available under the terms of the Eclipse Public License v1.0
\r
6 * which accompanies this distribution, and is available at
\r
7 * http://www.eclipse.org/legal/epl-v10.html
\r
10 * VTT Technical Research Centre of Finland - initial API and implementation
\r
11 *******************************************************************************/
\r
12 package org.simantics.sysdyn.ui.properties.widgets.modules;
\r
14 import org.simantics.browsing.ui.model.sorters.Sorter;
\r
15 import org.simantics.browsing.ui.model.sorters.SorterRule;
\r
16 import org.simantics.db.ReadGraph;
\r
17 import org.simantics.db.exception.DatabaseException;
\r
20 * SorterRule for sorting module parameters into alphabetic order.
\r
21 * @author Teemu Lempinen
\r
24 public class ParameterSorterRule implements SorterRule {
\r
27 public boolean isCompatible(Class<?> contentType) {
\r
32 public Sorter getSorter(ReadGraph graph, Object content)
\r
33 throws DatabaseException {
\r
34 return ParameterSorter.INSTANCE;
\r