CCM NG: Removed some not implented classes

git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@3702 8810af33-2d31-482b-a856-94f89814c4df
pull/2/head
jensp 2015-10-21 08:38:43 +00:00
parent a0fb963af5
commit 77a4965de9
1 changed files with 14 additions and 14 deletions

View File

@ -63,21 +63,21 @@ class UserAdministrationTab extends LayoutPanel {
sections.setClassAttr("navbar"); sections.setClassAttr("navbar");
setLeft(sections); setLeft(sections);
final UserBrowsePane browsePane = new UserBrowsePane(); // final UserBrowsePane browsePane = new UserBrowsePane();
final UserSummarySection summarySection = new UserSummarySection( // final UserSummarySection summarySection = new UserSummarySection(
this, browsePane); // this, browsePane);
final UserSearchSection searchSection = new UserSearchSection( // final UserSearchSection searchSection = new UserSearchSection(
this, browsePane); // this, browsePane);
final UserCreateSection createSection = new UserCreateSection(this); // final UserCreateSection createSection = new UserCreateSection(this);
//
browsePane.setTabbedPane(parent); // browsePane.setTabbedPane(parent);
browsePane.setGroupAdministrationTab(groupAdminTab); // browsePane.setGroupAdministrationTab(groupAdminTab);
//
final BoxPanel body = new BoxPanel(); final BoxPanel body = new BoxPanel();
addSection(USER_TAB_SUMMARY, summarySection, body); // addSection(USER_TAB_SUMMARY, summarySection, body);
addSection(USER_TAB_BROWSE, browsePane, body); // addSection(USER_TAB_BROWSE, browsePane, body);
addSection(USER_TAB_SEARCH, searchSection, body); // addSection(USER_TAB_SEARCH, searchSection, body);
addSection(USER_TAB_CREATE_USER, createSection, body); // addSection(USER_TAB_CREATE_USER, createSection, body);
setBody(body); setBody(body);
} }