Project

General

Profile

« Previous | Next » 

Revision 9c021029

Added by Andreas Müller almost 2 years ago

ref #10097 change originalNameString to originalInfo in cdmlib

View differences:

cdmlib-model/src/main/java/eu/etaxonomy/cdm/model/name/NameTypeDesignation.java
99 99
	 *
100 100
	 * @param typeName				the taxon name used as a type
101 101
	 * @param citation				the reference source for the new designation
102
	 * @param citationMicroReference	the string with the details describing the exact localisation within the reference
103
	 * @param originalNameString	the taxon name string used originally in the reference source for the new designation
102
	 * @param citationMicroReference the string with the details describing the exact localisation within the reference
103
	 * @param originalInfo	        any information from the original source, might be the name as written in the source (#10097)
104 104
	 * @param isRejectedType		the boolean flag indicating whether the competent authorities rejected
105 105
	 * 								<i>this</i> name type designation
106 106
	 * @param isConservedType		the boolean flag indicating whether the competent authorities conserved
......
112 112
	 * @see							TaxonName#addNameTypeDesignation(TaxonName, Reference, String, String, boolean, boolean, boolean, boolean, boolean)
113 113
	 */
114 114
	protected NameTypeDesignation(TaxonName typeName, NameTypeDesignationStatus status,
115
			Reference citation, String citationMicroReference, String originalNameString) {
116
		super(citation, citationMicroReference, originalNameString);
115
			Reference citation, String citationMicroReference, String originalInfo) {
116
		super(citation, citationMicroReference, originalInfo);
117 117
		this.setTypeName(typeName);
118 118
		this.setTypeStatus(status);
119 119
	}
......
127 127
	 * @param typeName				the taxon name used as a type
128 128
	 * @param citation				the reference source for the new designation
129 129
	 * @param citationMicroReference	the string with the details describing the exact localisation within the reference
130
	 * @param originalNameString	the taxon name string used originally in the reference source for the new designation
130
	 * @param originalInfo	any information from the original source, might be the name as written in the source (#10097)
131 131
	 * @param isRejectedType		the boolean flag indicating whether the competent authorities rejected
132 132
	 * 								<i>this</i> name type designation
133 133
	 * @param isConservedType		the boolean flag indicating whether the competent authorities conserved
......
141 141
	protected NameTypeDesignation(	TaxonName typeName,
142 142
									Reference citation,
143 143
									String citationMicroReference,
144
									String originalNameString,
144
									String originalInfo,
145 145
									NameTypeDesignationStatus status,
146 146
									boolean rejectedType,
147 147
									boolean conservedType,
148 148
									boolean isNotDesignated
149 149
								) {
150
		this(typeName, status, citation, citationMicroReference, originalNameString);
150
		this(typeName, status, citation, citationMicroReference, originalInfo);
151 151
		this.setNotDesignated(isNotDesignated);
152 152
		this.rejectedType = rejectedType;
153 153
		this.conservedType = conservedType;

Also available in: Unified diff