* @see PasteTemplateAction#getPasteLocation(GraphicalEditPart)
*/
protected Point getPasteLocation(GraphicalEditPart container) {
Point result = new Point(10, 10);
IFigure fig = container.getContentPane();
result.translate(fig.getClientArea(Rectangle.SINGLETON).getLocation());
fig.translateToAbsolute(result);
return result;
}
}