/**
* Initializes the Presenter and View for Attributes page.
*/
private AttributesPresenter createAttributesPage() {
AttributesViewImpl attributesView = new AttributesViewImpl();
AttributesPresenter attributesPresenter = new AttributesPresenter(
project, projectService, userService, dataService, attributesView, eventBus);
return attributesPresenter;
}