1 /*******************************************************************************
2 * Copyright (c) 2007, 2010 Association for Decentralized Information Management
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
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
13 * Created on 29.12.2005
16 package org.simantics.utils.ui.validators;
19 import java.net.URISyntaxException;
21 import org.eclipse.jface.dialogs.IInputValidator;
27 * @author Toni Kalajainen
29 public class URIValidator implements IInputValidator {
31 private final String supportedProtocols[];
33 public URIValidator() {
34 supportedProtocols = null;
37 public URIValidator(String... supportedProtocols) {
38 this.supportedProtocols = supportedProtocols;
41 public String isValid(String newText) {
43 URI u = new URI(newText);
44 if (supportedProtocols==null)
46 for (String p : supportedProtocols)
47 if (p.equals(u.getScheme()))
49 return u.getScheme()+":// is not supported.";
50 } catch (URISyntaxException e) {
51 return e.getMessage();