Revision 3377 trunk/libraries/libRemoteServices/src/org/gvsig/remoteClient/wms/WMSLayer.java

View differences:

WMSLayer.java
1 1
package org.gvsig.remoteClient.wms;
2 2

  
3 3
import java.io.IOException;
4
import java.util.ArrayList;
4 5
import java.util.Hashtable;
5 6
import java.util.TreeMap;
6 7
import java.util.Vector;
7 8

  
8 9
import org.gvsig.remoteClient.utils.BoundaryBox;
10
import org.gvsig.remoteClient.wms.wms_1_1_1.WMSLayer1_1_1;
9 11
import org.kxml2.io.KXmlParser;
10 12
import org.xmlpull.v1.XmlPullParserException;
11 13

  
......
15 17
 */
16 18
public abstract class WMSLayer implements org.gvsig.remoteClient.ILayer {
17 19

  
20
	ArrayList children = new ArrayList();
21
	WMSLayer1_1_1 parent = new WMSLayer1_1_1();
22
	
18 23
/**
19 24
 * <p>Layer Abstract field in the capabilities document </p> 
20 25
 */
......
260 265
 */
261 266
    public void setAbstract(String _abstract) {        
262 267
        layerAbstract = _abstract;
263
    } 
268
    }
269

  
270

  
271
public ArrayList getChildren() {
272
	return children;
273
}
274

  
275

  
276
public void setChildren(ArrayList children) {
277
	this.children = children;
278
}
279

  
280

  
281
public WMSLayer1_1_1 getParent() {
282
	return parent;
283
}
284

  
285

  
286
public void setParent(WMSLayer1_1_1 parent) {
287
	this.parent = parent;
288
} 
264 289
 }

Also available in: Unified diff