* @param presentationModel
* @return knapp
*/
public JButton getRemoveAttributeButton(WindowInterface window,
PresentationModel presentationModel) {
buttonRemoveAttribute = new DeleteButton("attributt",
new AttributeUpdate(presentationModel), window);
buttonRemoveAttribute.setName("ButtonRemveAttribute");
buttonRemoveAttribute.setEnabled(false);
return buttonRemoveAttribute;
}