Revision 10711

View differences:

trunk/extensions/extWFS2/src/com/iver/cit/gvsig/gui/panels/WFSFilterPanel.java
711 711

  
712 712
								if (returnValue == 2) {
713 713
									// Else -> Checks if the current token is a valid number or symbol
714
									if ((! StringNumberUtilities.isExponentialRealNumber(token)) && (! this.isAnOperatorNameOrSymbol(token, getAllOperatorSymbols()))) {
714
									if ((! StringNumberUtilities.isRealNumberWithIntegerExponent(token)) && (! this.isAnOperatorNameOrSymbol(token, getAllOperatorSymbols()))) {
715 715
										JOptionPane.showMessageDialog(null, PluginServices.getText(null, "filter_with_an_incorrect_format") + ": " + PluginServices.getText(null, "not_valid_token") + ": " + token, PluginServices.getText(null, "error_validating_filter_query"), JOptionPane.ERROR_MESSAGE);
716 716
										return false;
717 717
									}

Also available in: Unified diff