Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.eef.ide.ui/src/org/eclipse/eef/ide/ui/internal/properties/EEFSection.java')
-rw-r--r--plugins/org.eclipse.eef.ide.ui/src/org/eclipse/eef/ide/ui/internal/properties/EEFSection.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/org.eclipse.eef.ide.ui/src/org/eclipse/eef/ide/ui/internal/properties/EEFSection.java b/plugins/org.eclipse.eef.ide.ui/src/org/eclipse/eef/ide/ui/internal/properties/EEFSection.java
index ac4054bee..191cf1eb8 100644
--- a/plugins/org.eclipse.eef.ide.ui/src/org/eclipse/eef/ide/ui/internal/properties/EEFSection.java
+++ b/plugins/org.eclipse.eef.ide.ui/src/org/eclipse/eef/ide/ui/internal/properties/EEFSection.java
@@ -17,6 +17,7 @@ import org.eclipse.core.runtime.Platform;
import org.eclipse.eef.core.api.EEFGroup;
import org.eclipse.eef.core.api.EEFPage;
import org.eclipse.eef.core.api.InputDescriptor;
+import org.eclipse.eef.ide.ui.internal.EEFIdeUiPlugin;
import org.eclipse.eef.ide.ui.internal.widgets.EEFGroupLifecycleManager;
import org.eclipse.eef.ide.ui.internal.widgets.ILifecycleManager;
import org.eclipse.eef.properties.ui.api.EEFTabbedPropertySheetPage;
@@ -56,6 +57,8 @@ public class EEFSection implements IEEFSection {
@Override
public void createControls(Composite parent, EEFTabbedPropertySheetPage tabbedPropertySheetPage) {
+ EEFIdeUiPlugin.getPlugin().debug("EEFSection#createControls(...)"); //$NON-NLS-1$
+
EEFPage eefPage = this.eefSectionDescriptor.getEEFPage();
List<EEFGroup> eefGroups = eefPage.getGroups();
for (EEFGroup eefGroup : eefGroups) {
@@ -69,6 +72,8 @@ public class EEFSection implements IEEFSection {
@Override
public void aboutToBeShown() {
+ EEFIdeUiPlugin.getPlugin().debug("EEFSection#aboutToBeShown(...)"); //$NON-NLS-1$
+
for (ILifecycleManager lifecycleManager : lifecycleManagers) {
lifecycleManager.aboutToBeShown();
}
@@ -76,6 +81,8 @@ public class EEFSection implements IEEFSection {
@Override
public void setInput(IWorkbenchPart part, ISelection selection) {
+ EEFIdeUiPlugin.getPlugin().debug("EEFSection#setInput(...)"); //$NON-NLS-1$
+
if (selection instanceof IStructuredSelection) {
IStructuredSelection iStructuredSelection = (IStructuredSelection) selection;
Object object = iStructuredSelection.getFirstElement();
@@ -89,6 +96,8 @@ public class EEFSection implements IEEFSection {
@Override
public void refresh() {
+ EEFIdeUiPlugin.getPlugin().debug("EEFSection#refresh(...)"); //$NON-NLS-1$
+
for (ILifecycleManager lifecycleManager : lifecycleManagers) {
lifecycleManager.refresh();
}
@@ -96,6 +105,8 @@ public class EEFSection implements IEEFSection {
@Override
public void aboutToBeHidden() {
+ EEFIdeUiPlugin.getPlugin().debug("EEFSection#aboutToBeHidden(...)"); //$NON-NLS-1$
+
for (ILifecycleManager lifecycleManager : lifecycleManagers) {
lifecycleManager.aboutToBeHidden();
}
@@ -103,6 +114,8 @@ public class EEFSection implements IEEFSection {
@Override
public void dispose() {
+ EEFIdeUiPlugin.getPlugin().debug("EEFSection#dispose(...)"); //$NON-NLS-1$
+
for (ILifecycleManager lifecycleManager : lifecycleManagers) {
lifecycleManager.dispose();
}

Back to the top