Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-09-05 11:05:56 +0000
committerDani Megert2013-09-05 11:05:56 +0000
commit0a30e83ac7aebb941087717e8419cc3f9bdc81c0 (patch)
treefc07b825d5a345763dbddd35e9d6a8d092984531 /org.eclipse.help.base
parentec5dd28e987b052528e4387757d90a4cee4dd152 (diff)
downloadeclipse.platform.ua-0a30e83ac7aebb941087717e8419cc3f9bdc81c0.tar.gz
eclipse.platform.ua-0a30e83ac7aebb941087717e8419cc3f9bdc81c0.tar.xz
eclipse.platform.ua-0a30e83ac7aebb941087717e8419cc3f9bdc81c0.zip
Diffstat (limited to 'org.eclipse.help.base')
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/base/AbstractHelpDisplay.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/base/AbstractHelpDisplay.java b/org.eclipse.help.base/src/org/eclipse/help/base/AbstractHelpDisplay.java
index 272965f79..4e27f7067 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/base/AbstractHelpDisplay.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/base/AbstractHelpDisplay.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2010 IBM Corporation and others.
+ * Copyright (c) 2010, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -12,10 +12,11 @@
package org.eclipse.help.base;
/**
+ * Abstract class representing a help display which can be used to override the Eclipse help system
+ * UI using the extension point org.eclipse.help.base.display. Classes extending this abstract class
+ * must be capable of returning the help home page and other help related URLs.
+ *
* @since 3.6
- * Abstract class representing a help display which can be used to override the Eclipse help
- * system UI using the extension point org.eclipse.help.base.display. Classes extending this
- * abstract class must be capable of returning the help home page and other help related URLs
*/
public abstract class AbstractHelpDisplay {

Back to the top