Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
* Copyright (c) 2010, 2025 BSI Business Systems Integration AG
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
Expand All @@ -16,6 +16,7 @@
import org.eclipse.scout.rt.platform.classid.ClassId;
import org.eclipse.scout.widgets.client.ui.desktop.pages.PageWithDetailFormTablePage;
import org.eclipse.scout.widgets.client.ui.desktop.pages.PageWithEditableTableTablePage;
import org.eclipse.scout.widgets.client.ui.desktop.pages.PageWithHierarchicalTableTablePage;
import org.eclipse.scout.widgets.client.ui.desktop.pages.PageWithNodesNodePage;
import org.eclipse.scout.widgets.client.ui.desktop.pages.PageWithSearchFormTablePage;
import org.eclipse.scout.widgets.client.ui.desktop.pages.PageWithTableRecTablePage;
Expand All @@ -40,6 +41,7 @@ protected void execCreateChildPages(List<IPage<?>> pageList) {
pageList.add(new PageWithTableTablePage());
pageList.add(new PageWithEditableTableTablePage());
pageList.add(new PageWithTableRecTablePage());
pageList.add(new PageWithHierarchicalTableTablePage());
pageList.add(new PageWithSearchFormTablePage());
pageList.add(new PageWithNodesNodePage());
pageList.add(new PageWithDetailFormTablePage());
Expand Down
Loading