Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2013-03-11 15:18:19 +0000
committerMarkus Keller2013-03-11 15:18:19 +0000
commit1d583511f74709f307440f171ec5ca6c8416e24e (patch)
treebfa97af1c9fcd3bc5c2ae04c036c3b7bd8c7ae27 /org.eclipse.ui.intro
parentc858ae971cfb40f323f7ea0d183770be1dc3103b (diff)
downloadeclipse.platform.ua-1d583511f74709f307440f171ec5ca6c8416e24e.tar.gz
eclipse.platform.ua-1d583511f74709f307440f171ec5ca6c8416e24e.tar.xz
eclipse.platform.ua-1d583511f74709f307440f171ec5ca6c8416e24e.zip
Diffstat (limited to 'org.eclipse.ui.intro')
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/CustomizableIntroPart.java8
1 files changed, 3 insertions, 5 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/CustomizableIntroPart.java b/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/CustomizableIntroPart.java
index 6c791062c..5dd4208ed 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/CustomizableIntroPart.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/CustomizableIntroPart.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2009 IBM Corporation and others.
+ * Copyright (c) 2004, 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
@@ -69,7 +69,6 @@ import org.eclipse.ui.part.IntroPart;
* </p>
*
* @since 3.0
- * @noextend This class is not intended to be subclassed by clients.
*/
/*
@@ -222,7 +221,7 @@ public final class CustomizableIntroPart extends IntroPart implements
* has been tagged for restore, ie: it was open when workbench closed.
*
* @param memento
- * @return
+ * @return <code>true</code> if we need to recreate a standby part
*/
private boolean needToRestoreStandby(IMemento memento) {
// If we have a standby memento, it means we closed with standby open,
@@ -285,8 +284,7 @@ public final class CustomizableIntroPart extends IntroPart implements
* states. The design here is that if the showStandbyPart flag is set, then
* we always need to show the standby part.
*
- * @param standby
- * @return
+ * @return <code>true</code> if we need to show the standby part
*/
private boolean isStandbyPartNeeded() {
return container.getData(IIntroConstants.SHOW_STANDBY_PART) == null ? false : true;

Back to the top