setLayout(new BoxLayout(this, BoxLayout.LINE_AXIS));
setComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
setBorder(BorderFactory.createEmptyBorder(4, 2, 2, 2));
add(new ButtonCreate(getControler()));
add(Box.createHorizontalStrut(5));
add(new ButtonCopy(getControler()));
add(Box.createHorizontalStrut(5));
add(new ButtonDelete(getControler()));
}