]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.utils.ui/src/org/simantics/utils/ui/validators/URIValidator.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.utils.ui / src / org / simantics / utils / ui / validators / URIValidator.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in 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 /*\r
13  * Created on 29.12.2005\r
14  * \r
15  */\r
16 package org.simantics.utils.ui.validators;\r
17 \r
18 import java.net.URI;\r
19 import java.net.URISyntaxException;\r
20 \r
21 import org.eclipse.jface.dialogs.IInputValidator;\r
22 \r
23 \r
24 /**\r
25  * URI Validator\r
26  * \r
27  * @author Toni Kalajainen \r
28  */\r
29 public class URIValidator implements IInputValidator {\r
30     \r
31     private final String supportedProtocols[];\r
32     \r
33     public URIValidator() { \r
34         supportedProtocols = null;\r
35     }\r
36 \r
37     public URIValidator(String... supportedProtocols) {\r
38         this.supportedProtocols = supportedProtocols;\r
39     }\r
40     \r
41     public String isValid(String newText) {\r
42         try {\r
43             URI u = new URI(newText);\r
44             if (supportedProtocols==null)\r
45                 return null;\r
46             for (String p : supportedProtocols)\r
47                 if (p.equals(u.getScheme()))\r
48                     return null;\r
49             return u.getScheme()+":// is not supported.";\r
50         } catch (URISyntaxException e) {\r
51             return e.getMessage();\r
52         }\r
53     }\r
54 \r
55 }\r
56 \r