]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
e41c9b0a1f4fe08e1656a52cb398f954699ea7e7
[simantics/sysdyn.git] /
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2011 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.jfreechart.chart.properties;\r
13 \r
14 import org.eclipse.jface.dialogs.IInputValidator;\r
15 \r
16 /**\r
17  * Validator for validating that an input is double.\r
18  * \r
19  * Can allow empty strings.\r
20  * \r
21  * @author Teemu Lempinen\r
22  *\r
23  */\r
24 public class DoubleValidator implements IInputValidator {\r
25     \r
26     boolean allowEmpty;\r
27     \r
28     /**\r
29      * New double validator. Does not allow empty strings\r
30      */\r
31     public DoubleValidator() {\r
32         this(false);\r
33     }\r
34     \r
35     /**\r
36      * New double validator.\r
37      * @param allowEmpty Are empty strings allowed\r
38      */\r
39     public DoubleValidator(boolean allowEmpty) {\r
40         this.allowEmpty = allowEmpty;\r
41     }\r
42     \r
43     @Override\r
44     public String isValid(String newText) {\r
45         if (allowEmpty && newText.trim().isEmpty())\r
46             return null;\r
47         try {\r
48             Double.parseDouble(newText);\r
49             return null;\r
50         } catch (NumberFormatException e) {\r
51             return e.getMessage();\r
52         }\r
53     }\r
54 }\r