Revision 5536 trunk/libraries/libRemoteServices/src/org/gvsig/remoteClient/wms/WMSProtocolHandler.java

View differences:

WMSProtocolHandler.java
24 24
import org.kxml2.io.KXmlParser;
25 25
import org.xmlpull.v1.XmlPullParserException;
26 26

  
27
import com.iver.andami.PluginServices;
28

  
29 27
/**
30 28
 * <p> Abstract class that represents handlers to comunicate via WMS protocol.
31 29
 * </p>
......
235 233
	    	}
236 234
	    	else
237 235
	    	{
238
	    		sb.append("<INFO>").append(PluginServices.getText(this, "info_format_not_supported")).append("</INFO>");
236
	    		sb.append("<INFO>").append("Info format not supported").append("</INFO>");
239 237
	    		return sb.toString();
240 238
	    		//Para que funcione con el GetFeatureInfo Viewer generico hay que devolver:
241 239
	    		// return output.toString();
......
249 247
    		}
250 248
    		else
251 249
    		{
252
    	   		sb.append("<INFO>").append(PluginServices.getText(this, "info_format_not_supported")).append("</INFO>");
250
    	   		sb.append("<INFO>").append("Info format not supported").append("</INFO>");
253 251
        		return sb.toString();
254 252
    		}
255 253
    	}
256 254
    	catch(Exception e)
257 255
    	{
258 256
    		e.printStackTrace();
259
    		sb.append("<INFO>").append(PluginServices.getText(this, "info_format_not_supported")).append("</INFO>");
257
    		sb.append("<INFO>").append("Info format not supported").append("</INFO>");
260 258
    		return sb.toString();
261 259

  
262 260
    	}

Also available in: Unified diff