bounds.y = lt.y;
Graphics clipg=adaptable.needGlobalGraphics()?g.create(bounds.x, bounds.y, bounds.width, bounds.height):g;
Graphics2D g2d = (Graphics2D) clipg;
g2d.setStroke(STROKE);
g2d.setColor(GREEN_COLOR);
JPopupMenuDesignOperation operation = (JPopupMenuDesignOperation) adaptable.getAdapter(IDesignOperation.class);
g2d.drawLine(0, operation.getInsert_y(), jpm.getWidth(), operation.getInsert_y());
clipg.dispose();
}