Revision 7355 branches/v10/libraries/libRemoteServices/src/org/gvsig/remoteClient/gml/schemas/XMLComplexType.java

View differences:

XMLComplexType.java
47 47
 *
48 48
 * $Id$
49 49
 * $Log$
50
 * Revision 1.2  2006-08-29 08:43:13  jorpiell
50
 * Revision 1.2.2.1  2006-09-19 12:23:15  jorpiell
51
 * Ya no se depende de geotools
52
 *
53
 * Revision 1.3  2006/09/18 12:08:55  jorpiell
54
 * Se han hecho algunas modificaciones que necesitaba el WFS
55
 *
56
 * Revision 1.2  2006/08/29 08:43:13  jorpiell
51 57
 * Dos peque?os cambios para tener en cuenta las referencias
52 58
 *
53 59
 * Revision 1.1  2006/08/10 12:00:49  jorpiell
......
63 69
public class XMLComplexType implements IXMLType {
64 70
	private String type = null;
65 71
	private Hashtable elements = null;
72
	private Vector vElements = null;
66 73
		
67 74
	public XMLComplexType(String type) {
68 75
		super();
69 76
		this.type = type;
70 77
		elements = new Hashtable();
78
		vElements = new Vector();
71 79
	}
72 80
	
73 81
	/*
......
110 118
	public XMLElement getElement(String name){
111 119
		return (XMLElement)elements.get(name);
112 120
	}
121

  
122
	/**
123
	 * @return Returns the vElements.
124
	 */
125
	public Vector getVElements() {
126
		return vElements;
127
	}
113 128
	
114 129
	
115 130
	

Also available in: Unified diff