Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryPageSource.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryPageSource.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryPageSource.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryPageSource.java
index fc6dd464b..0b1339f00 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryPageSource.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryPageSource.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -17,28 +17,28 @@ import org.eclipse.ui.part.Page;
/**
* Interface to an object which is capable of supplying a history page for display
* by the history view or other views, dialogs or editors that wish to display
- * the history of an object.
- *
+ * the history of an object.
+ *
* This interface is not intended to be implemented by clients.
* Clients can instead subclass {@link HistoryPageSource}.
- *
+ *
* @see IFileHistoryProvider
* @since 3.2
*/
public interface IHistoryPageSource {
-
+
/**
* Returns true if this history page source can show a history for the given object, false if it cannot
* @param object the object that is to have history shown
- * @return boolean
+ * @return boolean
*/
public boolean canShowHistoryFor(Object object);
-
+
/**
* Called by the history view to create the page for this IFileHistoryProvider. The
* page must implement {@link IHistoryPage}.
* @param object the object whose history is to be shown
- *
+ *
* @see IHistoryPage
* @return a Page that implements IHistoryPage (should return either an IPage, IPageBookViewPage or an IHistoryPage
*/

Back to the top