Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IStandbyContentPart.java')
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IStandbyContentPart.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IStandbyContentPart.java b/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IStandbyContentPart.java
index 2a7431478..717a71d00 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IStandbyContentPart.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IStandbyContentPart.java
@@ -28,17 +28,17 @@ import org.eclipse.ui.intro.IIntroPart;
* pluginId="com.x.y.somePluginId"
* class="com.x.y.someClass"
* id="com.x.y.someContentPartId">
- * </standbyPart>
+ * </standbyPart>
* </extension>
* </pre>
- *
+ *
* </p>
* Standby content parts have a life cycle that starts with a call to init,
* shortly after part construction, followed by a call to createPartControl.
* During these two calls, the part is responsible for creating its content and
* using the memento to try to recreate its previous state. SetInput is the last
* method called when trying to create a standby part.
- *
+ *
* @since 3.0
*/
public interface IStandbyContentPart {
@@ -48,7 +48,7 @@ public interface IStandbyContentPart {
* <p>
* Clients should not call this method. The intro framework calls this
* method when it needs to.
- *
+ *
* @param parent
* the parent control
* @param toolkit
@@ -60,7 +60,7 @@ public interface IStandbyContentPart {
* Returns the primary control associated with this standby part. The
* control is typically set during the createPartControl() call when this
* part is being created.
- *
+ *
* @return the SWT control which displays this standby part's content, or
* <code>null</code> if this standby part's controls have not yet
* been created.
@@ -77,7 +77,7 @@ public interface IStandbyContentPart {
* construction. It marks the start of this parts' lifecycle. Clients must
* not call this method.
* </p>
- *
+ *
* @param introPart
* the intro part hosting this stanndby content part.
* @param memento
@@ -95,7 +95,7 @@ public interface IStandbyContentPart {
* an input specified, or when this standby part is being recreated from a
* previous workbench session. In this case, the standby part is responsible
* for handling a null input, and recreating itself from a cached IMemento.
- *
+ *
* @param input
* the input object to be used by this standby part.
*/
@@ -125,7 +125,7 @@ public interface IStandbyContentPart {
* This method is automatically called by the workbench at appropriate
* times. Clients must not call this method directly.
* </p>
- *
+ *
* @param memento
* a memento to receive the object state
*/

Back to the top