]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.utils.ui/src/org/simantics/utils/ui/validators/URLValidator.java
Sync git svn branch with SVN repository r33269.
[simantics/platform.git] / bundles / org.simantics.utils.ui / src / org / simantics / utils / ui / validators / URLValidator.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.MalformedURLException;\r
19 import java.net.URL;\r
20 \r
21 import org.eclipse.jface.dialogs.IInputValidator;\r
22 \r
23 /**\r
24  * URL Validator\r
25  * \r
26  * @author Toni Kalajainen\r
27  */\r
28 public class URLValidator implements IInputValidator {\r
29 \r
30     private final String supportedProtocols[];\r
31     \r
32     public URLValidator() { \r
33         supportedProtocols = null;\r
34     }\r
35 \r
36     public URLValidator(String... supportedProtocols) {\r
37         this.supportedProtocols = supportedProtocols;\r
38     }\r
39     \r
40     public String isValid(String newText) {\r
41         try {\r
42             URL u = new URL(newText);\r
43             if (supportedProtocols==null)\r
44                 return null;\r
45             for (String p : supportedProtocols)\r
46                 if (p.equals(u.getProtocol()))\r
47                     return null;\r
48             return u.getProtocol()+":// is not supported.";            \r
49         } catch (MalformedURLException e) {\r
50             return e.getMessage();\r
51         }\r
52     }\r
53 \r
54 }\r
55 \r