Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveListener2.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveListener2.java32
1 files changed, 16 insertions, 16 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveListener2.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveListener2.java
index 9a6edcef711..f1428fb9035 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveListener2.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveListener2.java
@@ -14,10 +14,10 @@
package org.eclipse.ui;
/**
- * Extension interface to <code>IPerspectiveListener</code> which
- * adds support for listening to part-specific perspective lifecycle events.
- * For example, this allows a perspective listener to determine which view
- * is being hidden during a <code>CHANGE_VIEW_HIDE</code> event.
+ * Extension interface to <code>IPerspectiveListener</code> which adds support
+ * for listening to part-specific perspective lifecycle events. For example,
+ * this allows a perspective listener to determine which view is being hidden
+ * during a <code>CHANGE_VIEW_HIDE</code> event.
* <p>
* This interface may be implemented by clients.
* </p>
@@ -28,16 +28,16 @@ package org.eclipse.ui;
*/
public interface IPerspectiveListener2 extends IPerspectiveListener {
- /**
- * Notifies this listener that a part in the given page's perspective
- * has changed in some way (for example, view show/hide, editor open/close, etc).
- *
- * @param page the workbench page containing the perspective
- * @param perspective the descriptor for the changed perspective
- * @param partRef the reference to the affected part
- * @param changeId one of the <code>CHANGE_*</code> constants on IWorkbenchPage
- */
- void perspectiveChanged(IWorkbenchPage page,
- IPerspectiveDescriptor perspective,
- IWorkbenchPartReference partRef, String changeId);
+ /**
+ * Notifies this listener that a part in the given page's perspective has
+ * changed in some way (for example, view show/hide, editor open/close, etc).
+ *
+ * @param page the workbench page containing the perspective
+ * @param perspective the descriptor for the changed perspective
+ * @param partRef the reference to the affected part
+ * @param changeId one of the <code>CHANGE_*</code> constants on
+ * IWorkbenchPage
+ */
+ void perspectiveChanged(IWorkbenchPage page, IPerspectiveDescriptor perspective, IWorkbenchPartReference partRef,
+ String changeId);
}

Back to the top