protected void decorateContainerRect(RoundedRectangle containerRect) {
}
protected void addedFromImport(ChoreographyActivity choreography, ContainerShape choreographyContainer,
IAddContext context) {
ModelHandler mh = null;
try {
mh = ModelHandler.getInstance(getDiagram());
} catch (IOException e) {
Activator.logError(e);
return;
}
List<Participant> participants = choreography.getParticipantRefs();
List<BPMNShape> shapes = mh.getAll(BPMNShape.class);
List<BPMNShape> filteredShapes = new ArrayList<BPMNShape>();
BPMNShape choreoBpmnShape = null;
for (BPMNShape shape : shapes) {
if (shape.getBpmnElement().equals(choreography)) {