blob: 6a4db451f3f4c17970a340a93d3630c2767d9d27 [file] [log] [blame]
package org.eclipse.ui.internal.misc;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.ui.*;
/**
* Prints out page listener events.
*/
public class TestPageListener implements IPageListener {
/**
* TestPageListener constructor comment.
*/
public TestPageListener() {
super();
}
/**
* Notifies this listener that the given page has been activated.
*
* @param page the page that was activated
* @see IWorkbenchWindow#setActivePage
*/
public void pageActivated(IWorkbenchPage page) {
System.out.println("pageActivated(" + page + ")");//$NON-NLS-2$//$NON-NLS-1$
}
/**
* Notifies this listener that the given page has been closed.
*
* @param page the page that was closed
* @see IWorkbenchPage#close
*/
public void pageClosed(IWorkbenchPage page) {
System.out.println("pageClosed(" + page + ")");//$NON-NLS-2$//$NON-NLS-1$
}
/**
* Notifies this listener that the given page has been opened.
*
* @param page the page that was opened
* @see IWorkbenchWindow#openPage
*/
public void pageOpened(IWorkbenchPage page) {
System.out.println("pageOpened(" + page + ")");//$NON-NLS-2$//$NON-NLS-1$
}
}