Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/AbstractIntroPartImplementation.java')
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/AbstractIntroPartImplementation.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/AbstractIntroPartImplementation.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/AbstractIntroPartImplementation.java
index 57ba999b5..e67662aa7 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/AbstractIntroPartImplementation.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/AbstractIntroPartImplementation.java
@@ -35,7 +35,7 @@ import org.eclipse.ui.intro.config.CustomizableIntroPart;
* instantiated from plugin markup and so we need a default constructor,
* including in subclasses. It has some base methods, including maintaining a
* history of navigation locations. Also, dynamic awarness is honored here.
- *
+ *
*/
public abstract class AbstractIntroPartImplementation {
@@ -121,7 +121,7 @@ public abstract class AbstractIntroPartImplementation {
/**
* Creates the UI based on this implementation class. .
- *
+ *
* @param parent
*/
public abstract void createPartControl(Composite parent);
@@ -130,7 +130,7 @@ public abstract class AbstractIntroPartImplementation {
* Called when the init method is called in the IIntroPart. Subclasses may
* extend, for example to get the passed Memento. When extending, make sure
* you include a call to super.
- *
+ *
* @param introPart
*/
public void init(IIntroPart introPart, IMemento memento) {
@@ -156,7 +156,7 @@ public abstract class AbstractIntroPartImplementation {
/**
* Updates the UI navigation history with either a real URL.
- *
+ *
* @param location
*/
public void updateHistory(String location) {
@@ -166,7 +166,7 @@ public abstract class AbstractIntroPartImplementation {
/**
* Updates the UI navigation history with a page ID.
- *
+ *
* @param pageId
*/
public void updateHistory(AbstractIntroPage page) {
@@ -178,7 +178,7 @@ public abstract class AbstractIntroPartImplementation {
/**
* Subclasses must implement to set the state of the navigation actions in
* the toolbar.
- *
+ *
*/
public abstract void setFocus();
@@ -186,7 +186,7 @@ public abstract class AbstractIntroPartImplementation {
/**
* Subclasses must implement to update the intro view actions when history
* is updated.
- *
+ *
*/
protected abstract void updateNavigationActionsState();
@@ -224,7 +224,7 @@ public abstract class AbstractIntroPartImplementation {
* Called when the Intro changes state. This method should not be
* subclassed. It adds performance logging calls. Subclasses must implement
* doStandbyStateChanged instead.
- *
+ *
* @param standby
*/
public void standbyStateChanged(boolean standby, boolean isStandbyPartNeeded) {
@@ -305,12 +305,12 @@ public abstract class AbstractIntroPartImplementation {
* about the most recently visited intro page. In static case, the last HTML
* page is remembered. In dynamic case, the last UI page or HTML page is
* remembered.
- *
+ *
* Note: This method saves the last visited intro page in a dynamic case.
* Subclasses need to extend to get the desired behavior relavent to the
* specific implementation. Broswer implementation needs to cache an http
* web page, if it happens to be the last page visited.
- *
+ *
* @param memento
*/
public void saveState(IMemento memento) {
@@ -323,7 +323,7 @@ public abstract class AbstractIntroPartImplementation {
* memento. If a given implementation requires saving alternative
* information (e.g., information about the most recently visited static
* page) it should override this method.
- *
+ *
* @param memento
*/
protected void saveCurrentPage(IMemento memento) {
@@ -376,7 +376,7 @@ public abstract class AbstractIntroPartImplementation {
/**
* Support dynamic awarness. Clear cached models first, then update UI by
* delegating to implementation.
- *
+ *
* @see org.eclipse.core.runtime.IRegistryChangeListener#registryChanged(org.eclipse.core.runtime.IRegistryChangeEvent)
*/
public void registryChanged(IRegistryChangeEvent event) {

Back to the top