Revision 3655 branches/gvSIG_WMSv2/extensions/extWMS/src/com/iver/cit/gvsig/fmap/layers/WMSLayerNode.java

View differences:

WMSLayerNode.java
43 43
*
44 44
* $Id$
45 45
* $Log$
46
* Revision 1.1.2.8  2006-01-05 23:15:53  jaume
46
* Revision 1.1.2.9  2006-01-17 12:55:40  jaume
47 47
* *** empty log message ***
48 48
*
49
* Revision 1.1.2.8  2006/01/05 23:15:53  jaume
50
* *** empty log message ***
51
*
49 52
* Revision 1.1.2.7  2006/01/04 18:09:02  jaume
50 53
* Time dimension
51 54
*
......
77 80
import java.util.ArrayList;
78 81
import java.util.Vector;
79 82

  
83
import org.gvsig.remoteClient.utils.BoundaryBox;
84

  
80 85
/**
81 86
 * Class defining the node of the layer tree of a common WMS service.
82 87
 * @author jaume
......
89 94
    private boolean queryable;
90 95
    private boolean transparency;
91 96
    private String lAbstract;
97
    private String latLonBox;
92 98
    
93 99
    private ArrayList styles;
94 100
    private ArrayList dimensions;
......
216 222
     */
217 223
    public Object clone(){
218 224
        WMSLayerNode clone = new WMSLayerNode();
219
        clone._name         = this._name;
225
        clone._name        = this._name;
220 226
        clone.queryable    = this.queryable;
221 227
        clone.srs          = this.srs;
222
        clone._title        = this._title;
228
        clone._title       = this._title;
223 229
        clone.transparency = this.transparency;
224 230
        clone.styles       = new ArrayList();
225 231
        clone.lAbstract    = this.lAbstract;
232
        clone.latLonBox    = this.latLonBox;
226 233
        if (styles!=null)
227 234
        	for (int i=0; i<styles.size(); i++){
228 235
        		clone.styles.add(((FMapWMSStyle) this.styles.get(i)).clone());
......
289 296
        }
290 297
    }
291 298

  
299
    /**
300
     * Sets the Latitude-Longitude box text to be shown in an user interface layer descriptor.
301
     * @param latLonBox
302
     */
303
    public void setLatLonBox(String _latLonBox) {
304
        latLonBox = _latLonBox;
305
    }
306
    /**
307
     * Returns the Latitude-Longitude box text to be shown in an user interface layer descriptor.
308
     * @return
309
     */
310
    public String getLatLonBox() {
311
        return latLonBox;
312
    }
292 313

  
314

  
293 315
	
294 316
}

Also available in: Unified diff