addFeedback(dropHintLabel);
final String hintText = getDropHintText(position);
dropHintLabel.setText(hintText);
//TODO: need to handle viewport clipping and adjust label location appropriately
Dimension hintSize = dropHintLabel.getPreferredSize();
Point hintLocation = new Point(mousePosition.x, mousePosition.y+DROP_HINT_VERTICAL_OFFSET);
Rectangle hintRect = new Rectangle(hintLocation, hintSize);
//Bug 303524 - [WPE] design view flickers on dnd of jsf html column
// (translateToRelative BEFORE intersect, so intersection happens on final display bounds)