* @param presentationModel
* @return knapp
*/
public JButton getAddAttributeButton(WindowInterface window,
PresentationModel presentationModel) {
buttonAddAttribute = new NewButton("attributt", new AttributeUpdate(
presentationModel), window);
buttonAddAttribute.setName("ButtonAddAttribute");
buttonAddAttribute.setEnabled(hasWriteAccess());
return buttonAddAttribute;
}