Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/services/EditorLifecycleEventListener.java')
-rw-r--r--plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/services/EditorLifecycleEventListener.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/services/EditorLifecycleEventListener.java b/plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/services/EditorLifecycleEventListener.java
index 362a006805c..97145447636 100644
--- a/plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/services/EditorLifecycleEventListener.java
+++ b/plugins/infra/core/org.eclipse.papyrus.infra.core/src/org/eclipse/papyrus/infra/core/services/EditorLifecycleEventListener.java
@@ -1,6 +1,6 @@
/*****************************************************************************
* Copyright (c) 2013 CEA LIST.
- *
+ *
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -15,29 +15,29 @@ import org.eclipse.papyrus.infra.core.editor.IMultiDiagramEditor;
/**
* Listens to the Lifecycle of an {@link IMultiDiagramEditor}
- *
+ *
* @author Camille Letavernier
- *
+ *
*/
public interface EditorLifecycleEventListener {
/**
* The ServicesRegistry is successfully started
- *
+ *
* @param editor
*/
public void postInit(IMultiDiagramEditor editor);
/**
* All the editors are displayed
- *
+ *
* @param editor
*/
public void postDisplay(IMultiDiagramEditor editor);
/**
* The editor is about to be closed
- *
+ *
* @param editor
*/
public void beforeClose(IMultiDiagramEditor editor);

Back to the top