Project

General

Profile

« Previous | Next » 

Revision 484431ef

Added by Katja Luther over 12 years ago

trunk merged into branch

View differences:

cdmlib-io/src/main/java/eu/etaxonomy/cdm/io/excel/taxa/NormalExplicitRow.java
10 10
package eu.etaxonomy.cdm.io.excel.taxa;
11 11

  
12 12
import java.util.ArrayList;
13
import java.util.HashMap;
13 14
import java.util.List;
15
import java.util.Map;
16
import java.util.Set;
14 17
import java.util.TreeMap;
18
import java.util.UUID;
19

  
20
import eu.etaxonomy.cdm.io.excel.common.ExcelRowBase;
21
import eu.etaxonomy.cdm.io.excel.common.ExcelTaxonOrSpecimenImportBase.SourceType;
15 22

  
16 23
/**
17 24
 * @author a.babadshanjan
18 25
 * @created 13.01.2009
19 26
 * @version 1.0
20 27
 */
21
public class NormalExplicitRow {
28
public class NormalExplicitRow extends ExcelRowBase {
22 29
	
23 30
	private int id;
24 31
	private int parentId;
......
37 44
	
38 45
	private TreeMap<Integer, String> images = new TreeMap<Integer, String>();
39 46
	
40
	
41
	
42 47
	public NormalExplicitRow() {
43 48
		this.id = 0;
44 49
		this.parentId = 0;
......
207 212
	public List<String> getImages() {
208 213
		return getOrdered(images);
209 214
	}
215
	
210 216

  
211 217
	private List<String> getOrdered(TreeMap<Integer, String> tree) {
212 218
		List<String> result = new ArrayList<String>();
......
215 221
		}
216 222
		return result;
217 223
	}
224

  
225

  
226

  
218 227
	
219 228
}

Also available in: Unified diff