]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
20db86bd603342968b6cb22477d81a874b17f1ce
[simantics/sysdyn.git] /
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2012 Association for Decentralized Information Management in\r
3  * Industry THTH ry.\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
8  *\r
9  * Contributors:\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
13 \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
18 \r
19 /**\r
20  * SorterRule for sorting module parameters into alphabetic order.\r
21  * @author Teemu Lempinen\r
22  *\r
23  */\r
24 public class ParameterSorterRule implements SorterRule {    \r
25         \r
26         @Override\r
27         public boolean isCompatible(Class<?> contentType) {\r
28             return true;\r
29         }\r
30 \r
31         @Override\r
32         public Sorter getSorter(ReadGraph graph, Object content)\r
33                 throws DatabaseException {\r
34             return ParameterSorter.INSTANCE;\r
35         }\r
36 }\r
37 \r