Project

General

Profile

« Previous | Next » 

Revision ce463c3c

Added by Niels Hoffmann about 16 years ago

CLOSED - #358: DIPTERA orthographic variants are not shown in dataportal

View differences:

cdmlib-remote/src/main/java/eu/etaxonomy/cdm/remote/dto/NameSTO.java
27 27
	private List<TaggedText> taggedName = new ArrayList();
28 28
	private Set<LocalisedTermSTO> status = new HashSet<LocalisedTermSTO>();
29 29
	private Set<DescriptionTO> descriptions = new HashSet<DescriptionTO>();
30
	private List<NameRelationshipTO> nameRelations = new ArrayList<NameRelationshipTO>();
30 31
	
31 32
	public String getFullname() {
32 33
		return fullname;
......
68 69
		return this.descriptions;
69 70
	}
70 71
	
72
	/**
73
	 * @return the nameRelationship
74
	 */
75
	public List<NameRelationshipTO> getNameRelations() {
76
		return nameRelations;
77
	}
78
	/**
79
	 * @param nameRelationship the nameRelationship to set
80
	 */
81
	public void setNameRelations(List<NameRelationshipTO> nameRelationship) {
82
		this.nameRelations = nameRelationship;
83
	}
84
	
71 85
}

Also available in: Unified diff