}
});
// a container with coordinates
svg=new ShapesContainer("SVG");
LabelShape l;
for(int i=0;i<GRID_SIZE;i++){
l=new LabelShape(""+i,GRID_STEP*i,0,LabelShape.CENTER,false);
l.setBounds(sFont);
svg.addElement(l);
l=new LabelShape(""+i,0,GRID_STEP*i,LabelShape.CENTER,false);
l.setBounds(sFont);
svg.addElement(l);
}
editor.addComponent(svg.getComponent());
DiagramClipboard.create();