]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.utils.ui/src/org/simantics/utils/ui/validators/URIValidator.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.utils.ui / src / org / simantics / utils / ui / validators / URIValidator.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 /*
13  * Created on 29.12.2005
14  * 
15  */
16 package org.simantics.utils.ui.validators;
17
18 import java.net.URI;
19 import java.net.URISyntaxException;
20
21 import org.eclipse.jface.dialogs.IInputValidator;
22
23
24 /**
25  * URI Validator
26  * 
27  * @author Toni Kalajainen 
28  */
29 public class URIValidator implements IInputValidator {
30     
31     private final String supportedProtocols[];
32     
33     public URIValidator() { 
34         supportedProtocols = null;
35     }
36
37     public URIValidator(String... supportedProtocols) {
38         this.supportedProtocols = supportedProtocols;
39     }
40     
41     public String isValid(String newText) {
42         try {
43             URI u = new URI(newText);
44             if (supportedProtocols==null)
45                 return null;
46             for (String p : supportedProtocols)
47                 if (p.equals(u.getScheme()))
48                     return null;
49             return u.getScheme()+":// is not supported.";
50         } catch (URISyntaxException e) {
51             return e.getMessage();
52         }
53     }
54
55 }
56