projectService.createAttribute(attribute,
new TaCallback<Long>("creating attribute") {
@Override
public void onSuccess(Long result) {
attribute.setAttributeId(result);
eventBus.fireEvent(new ProjectElementAddedEvent(attribute));
refreshView();
}
});
}