Revision 10386 trunk/libraries/libDwg/src/com/iver/cit/jdwglib/dwg/DwgFile.java

View differences:

DwgFile.java
137 137
	 * DwgObject in the dwgObjects collection
138 138
	 * 
139 139
	 * */
140
	private LinkedList dwgObjects;
140
	private List dwgObjects;
141 141
	private HashMap handle_objects;
142 142
	
143 143

  
......
189 189
		
190 190
		dwgClasses = new ArrayList();
191 191
		
192
		dwgObjects = new LinkedList();
192
		dwgObjects = new ArrayList();
193 193
		handle_objects = new HashMap();
194 194
		
195 195
		layerTable = new HashMap();
......
1023 1023
    /**
1024 1024
     * @return Returns the dwgObjects.
1025 1025
     */
1026
    public LinkedList getDwgObjects() {
1026
    public List getDwgObjects() {
1027 1027
        return dwgObjects;
1028 1028
    }
1029 1029
    /**

Also available in: Unified diff