public void removeLabelListeners() {
Component[] comps = getComponents();
for (Component comp : comps) {
if (comp instanceof DragLabel) {
DragLabel label = (DragLabel) comp;
label.removeMouseListener(this);
label.removeMouseMotionListener(this);
}
}
}