Project

General

Profile

« Previous | Next » 

Revision 2720ea2c

Added by Andreas Müller over 3 years ago

cleanup

View differences:

cdmlib-io/src/main/java/eu/etaxonomy/cdm/io/dwca/out/DwcaMetaDataRecord.java
17 17
/**
18 18
 * @author a.mueller
19 19
 * @since 20.04.2011
20
 *
21 20
 */
22 21
public class DwcaMetaDataRecord  {
23 22
	@SuppressWarnings("unused")
......
35 34
	private List<FieldEntry> fieldEntryList = new ArrayList<>();
36 35
	protected List<String> fieldList = new ArrayList<>();
37 36

  
38

  
39 37
	public DwcaMetaDataRecord(boolean isCore, String fileLocation, String rowType){
40 38
		FieldEntry idEntry = new FieldEntry();
41 39
		idEntry.index = currentIndex++;
......
46 44
		this.setRowType(rowType);
47 45
	}
48 46

  
49

  
50 47
	protected class FieldEntry{
51 48
		int index;
52 49
		URI term = null;
......
129 126
	public String toString() {
130 127
		return this.fileLocation;
131 128
	}
132

  
133

  
134

  
135
}
129
}

Also available in: Unified diff