private void addInclusions() {
if (!comp.getIncludedComposites().isEmpty()) {
Layer inclusionLayer = new Layer();
int constant = 10;
int x0 = comp.getX() + constant;
int y0 = comp.getY() + comp.getHeight() - (80 + constant);
int height = 80;
int width = comp.getWidth() - constant * 2;
Element layerElt = inclusionLayer.addElement(doc, svgNS, x0, y0, height, width);
Element text = Text.addTextElement(doc, svgNS, x0 + constant, y0 + constant * 2, "Included Composites: ");
svgRoot.appendChild(layerElt);
svgRoot.appendChild(text);