Project

General

Profile

« Previous | Next » 

Revision 52abc79a

Added by Andreas Müller over 12 years ago

lasted Markup updates

View differences:

cdmlib-io/src/main/java/eu/etaxonomy/cdm/io/markup/MarkupImportState.java
14 14
import java.util.HashSet;
15 15
import java.util.Map;
16 16
import java.util.Set;
17
import java.util.UUID;
17 18

  
18 19
import org.apache.log4j.Logger;
19 20

  
......
63 64
	private Map<String, Set<AnnotatableEntity>> footnoteRefRegister = new HashMap<String, Set<AnnotatableEntity>>();
64 65
	private Map<String, Set<AnnotatableEntity>> figureRefRegister = new HashMap<String, Set<AnnotatableEntity>>();
65 66
	
67
	private Map<String, UUID> areaMap = new HashMap<String, UUID>();
66 68
	
67 69
		
68 70
//**************************** CONSTRUCTOR ******************************************/
......
218 220
		return currentKey;
219 221
	}
220 222

  
223
	/**
224
	 * @param key
225
	 * @return
226
	 * @see java.util.Map#get(java.lang.Object)
227
	 */
228
	public UUID getAreaUuid(Object key) {
229
		return areaMap.get(key);
230
	}
231

  
232
	/**
233
	 * @param key
234
	 * @param value
235
	 * @return
236
	 * @see java.util.Map#put(java.lang.Object, java.lang.Object)
237
	 */
238
	public UUID putAreaUuid(String key, UUID value) {
239
		return areaMap.put(key, value);
240
	}
241
	
242
	
243

  
221 244
}

Also available in: Unified diff