// only single RDF terms are pasted...
// => collect them in a TripleContainer!
final LinkedHashSet<Operator> lhso = new LinkedHashSet<Operator>();
lhso.addAll(rdfHash.values());
final TripleContainer tc = new TripleContainer(lhso);
tc.setParents();
final GraphBox graphBox = this.visualGraphs.get(0).graphBoxCreator.createGraphBox(
this.visualGraphs.get(0), new GraphWrapperOperator(
tc));
graphBox.setY(rowY);
graphBox.arrange(Arrange.values()[0]);
this.visualGraphs.get(0).addOperator(graphBox.getX(), rowY,
tc);
((ContainerPanel) tc.getGUIComponent()).arrange(Arrange.values()[0]);
if (tc.getGUIComponent().getLocation().x < 0) {
this.visualGraphs.get(0).getBoxes()
.get(new GraphWrapperOperator(tc))
.setX((int) this.visualGraphs.get(0).PADDING);
}
}