Revision 3505

View differences:

trunk/libraries/libRemoteServices/src/org/gvsig/remoteClient/wms/WMSProtocolHandler.java
105 105
			//TODO:
106 106
			//pass this buildXXXRequest to the WMSProtocolHandlerXXX: The request can depend on the WMS version.
107 107
			request = new URL(buildMapRequest(status));
108
            System.out.println(request.toString());
108 109
	    	byte[] buffer = new byte[1024*256];
109 110
	    	byte[] imageBytes = null;
110 111
	    	InputStream is = request.openStream();
trunk/libraries/libRemoteServices/src/org/gvsig/remoteClient/wms/WMSLayer.java
79 79
     * Tells if this layer accepts getFeatureInfo requests.
80 80
     */
81 81
    private boolean queryable;
82
    /**
83
     * Tells if this layer can be served with transparency.
84
     */
85
    private boolean transparency;
82 86
    
83 87
    /**
84 88
     * <p>Parses the LAYER tag in the WMS capabilities, filling the WMSLayer object
......
331 335
    public void setQueryable(boolean queryable) {
332 336
        this.queryable = queryable;
333 337
    }
338

  
339

  
340
    /**
341
     * @return <b>true</b> if this layer can be served with transparency, otherwise <b>false</b>
342
     */
343
    public boolean hasTransparency() {
344
        return transparency;
345
    }
334 346
}

Also available in: Unified diff