Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.console/src/org/eclipse/ui/console/IConsolePageParticipant.java')
-rw-r--r--org.eclipse.ui.console/src/org/eclipse/ui/console/IConsolePageParticipant.java42
1 files changed, 21 insertions, 21 deletions
diff --git a/org.eclipse.ui.console/src/org/eclipse/ui/console/IConsolePageParticipant.java b/org.eclipse.ui.console/src/org/eclipse/ui/console/IConsolePageParticipant.java
index 4e1f4983b..a48fc0380 100644
--- a/org.eclipse.ui.console/src/org/eclipse/ui/console/IConsolePageParticipant.java
+++ b/org.eclipse.ui.console/src/org/eclipse/ui/console/IConsolePageParticipant.java
@@ -43,29 +43,29 @@ import org.eclipse.ui.part.IPageBookViewPage;
* @since 3.1
*/
public interface IConsolePageParticipant extends IAdaptable {
- /**
- * Called during page initialization. Marks the start of this
- * page participant's lifecycle.
- *
- * @param page the page corresponding to the given console
- * @param console the console for which a page has been created
- */
- public void init(IPageBookViewPage page, IConsole console);
+ /**
+ * Called during page initialization. Marks the start of this
+ * page participant's lifecycle.
+ *
+ * @param page the page corresponding to the given console
+ * @param console the console for which a page has been created
+ */
+ public void init(IPageBookViewPage page, IConsole console);
- /**
- * Disposes this page participant. Marks the end of this
- * page participant's lifecycle.
- */
- public void dispose();
+ /**
+ * Disposes this page participant. Marks the end of this
+ * page participant's lifecycle.
+ */
+ public void dispose();
- /**
- * Notification this participant's page has been activated.
- */
- public void activated();
+ /**
+ * Notification this participant's page has been activated.
+ */
+ public void activated();
- /**
- * Notification this participant's page has been deactivated.
- */
- public void deactivated();
+ /**
+ * Notification this participant's page has been deactivated.
+ */
+ public void deactivated();
}

Back to the top