]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
3a6af0ce5794c2529beaeaff1b41d152541c23ba
[simantics/sysdyn.git] /
1 /*******************************************************************************\r
2  * Copyright (c) 2010 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.factories;\r
13 \r
14 import org.eclipse.jface.dialogs.IInputValidator;\r
15 import org.simantics.browsing.ui.swt.widgets.impl.Widget;\r
16 import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupport;\r
17 import org.simantics.db.Resource;\r
18 import org.simantics.db.management.ISessionContext;\r
19 import org.simantics.sysdyn.ui.utils.VariableNameValidator;\r
20 import org.simantics.utils.ui.ISelectionUtils;\r
21 \r
22 /**\r
23  * Name validator container for module types.\r
24  * @author Teemu Lempinen\r
25  * @author Tuomas Miettinen\r
26  *\r
27  */\r
28 public class VariableNameInputValidator implements IInputValidator, Widget {\r
29 \r
30         private Resource lastInput = null;\r
31         \r
32         public VariableNameInputValidator(WidgetSupport support) {\r
33                 support.register(this);\r
34         }\r
35         \r
36         /**\r
37          * Checks that the syntax of the given name is valid and there \r
38          * are no other components that have the same name in the configuration.\r
39          */\r
40         @Override\r
41         public String isValid(final String newText) {\r
42             if (!new VariableNameValidator().isValid(lastInput, newText, true))\r
43                 return "Not valid";\r
44         else\r
45                 return null;\r
46         }\r
47 \r
48         @Override\r
49         public void setInput(ISessionContext context, Object input) {\r
50                 lastInput = ISelectionUtils.filterSingleSelection(input, Resource.class);\r
51         }\r
52 \r
53 }\r