Project

General

Profile

« Previous | Next » 

Revision 313a1ad8

Added by Andreas Müller about 11 years ago

latest markup changes

View differences:

cdmlib-io/src/main/java/eu/etaxonomy/cdm/io/markup/MarkupImportConfigurator.java
38 38
	
39 39
	private boolean allowCapitalSpeciesEpithet = false;  //set to true if you want to allow specific epithets with capital letter at the beginning. This was allowed by the code for epithets referring to persons such as Beilschmiedia Zenkeri.
40 40

  
41
	private boolean handlePagesAsDetailWhereNeeded = true;  //often details in publications and citations are tagged as pages, not as details. If value is true, pages are handled as details where possible 
42

  
43
	private boolean useEditorAsInAuthorWhereNeeded = true;  //often the inAuthor is stored as "Editor" in citations, atleast in FM.
41 44
	
42 45
	//TODO
43 46
	private static IInputTransformer defaultTransformer = null;
......
217 220
		this.allowCapitalSpeciesEpithet = allowCapitalSpeciesEpithet;
218 221
	}
219 222

  
223
	public boolean isHandlePagesAsDetailWhereNeeded() {
224
		return this.handlePagesAsDetailWhereNeeded;
225
	}
226
	
227
	public void setHandlePagesAsDetailWhereNeeded(boolean handlePagesAsDetailWhereNeeded) {
228
		this.handlePagesAsDetailWhereNeeded = handlePagesAsDetailWhereNeeded;
229
	}
230

  
231
	public boolean isUseEditorAsInAuthorWhereNeeded() {
232
		return useEditorAsInAuthorWhereNeeded;
233
	}
234

  
235
	public void setUseEditorAsInAuthorWhereNeeded(boolean useEditorAsInAuthorWhereNeeded) {
236
		this.useEditorAsInAuthorWhereNeeded = useEditorAsInAuthorWhereNeeded;
237
	}
238

  
220 239
	
221 240
}

Also available in: Unified diff