Package org.eclipse.jface.dialogs
Class PageChangedEvent
java.lang.Object
java.util.EventObject
org.eclipse.jface.dialogs.PageChangedEvent
- All Implemented Interfaces:
Serializable
Event object describing a page selection change. The source of these events
is a page change provider.
- Since:
- 3.1
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorDescriptionPageChangedEvent
(IPageChangeProvider source, Object selectedPage) Creates a new event for the given source and selected page. -
Method Summary
Modifier and TypeMethodDescriptionReturns the page change provider that is the source of this event.Returns the selected page.Methods inherited from class java.util.EventObject
getSource, toString
-
Field Details
-
selectedPage
The selected page.
-
-
Constructor Details
-
PageChangedEvent
Creates a new event for the given source and selected page.- Parameters:
source
- the page change providerselectedPage
- the selected page. In the JFace provided dialogs this will be anIDialogPage
.
-
-
Method Details
-
getSelectedPage
Returns the selected page.- Returns:
- the selected page. In dialogs implemented by JFace,
this will be an
IDialogPage
.
-
getPageChangeProvider
Returns the page change provider that is the source of this event.- Returns:
- the originating page change provider
-