}
private void collectArtefactRepresentations() {
artefactRepresentations = new HashMap<String, MetaArtefactRepresentation>();
for (IConfigurationElement element : getPlugins(IArtefactRepresentation.POINT_ID)) {
MetaArtefactRepresentation representation = new MetaArtefactRepresentation(
element);
artefactRepresentations.put(representation.getId(), representation);
}
}