Rectangle localBounds = SwingUtil.convertBoundsToGlassCoords(pane.getViewport());
if (localBounds.contains(p))
{
Point docPoint = SwingUtil.convertFromGlassCoords(p, view);
ProcessElementContainer pec = (ProcessElementContainer) FigureUtil.findChildFigure(this, docPoint.x, docPoint.y, ProcessElementContainer.class);
if (pec != null && !(pec instanceof PolySplineConnection))
{
return pec.getAllImportersAt(p);
}
return getImportersAt(p);
}