Bug 537916 - org.eclipse.e4.ui.workbench.lifecycle should be API

Fixed API errors

Change-Id: I7d8706cf799a255fff4e0c0daa06ef0f20083f80
Signed-off-by: Wim Jongman <wim.jongman@remainsoftware.com>
diff --git a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/PostContextCreate.java b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/PostContextCreate.java
index 87df75f..727ad1a 100644
--- a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/PostContextCreate.java
+++ b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/PostContextCreate.java
@@ -17,8 +17,11 @@
 import java.lang.annotation.Target;
 
 /**
- * Use this annotation to describe methods that will participate in the application lifecycle. This
- * method will be called after application context is created.
+ * Use this annotation to describe methods that will participate in the
+ * application lifecycle. This method will be called after application context
+ * is created.
+ *
+ * @since 1.7
  */
 @Documented
 @Target({ ElementType.METHOD })
diff --git a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/PreSave.java b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/PreSave.java
index 9c65cb4..a05bf4e 100644
--- a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/PreSave.java
+++ b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/PreSave.java
@@ -17,8 +17,11 @@
 import java.lang.annotation.Target;
 
 /**
- * Use this annotation to describe methods that will participate in the application lifecycle. This
- * method will be called before the model is persisted.
+ * Use this annotation to describe methods that will participate in the
+ * application lifecycle. This method will be called before the model is
+ * persisted.
+ *
+ * @since 1.7
  */
 @Documented
 @Target({ ElementType.METHOD })
diff --git a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/ProcessAdditions.java b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/ProcessAdditions.java
index 4ec5d79..1c52446 100644
--- a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/ProcessAdditions.java
+++ b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/ProcessAdditions.java
@@ -17,8 +17,10 @@
 import java.lang.annotation.Target;
 
 /**
- * Use this annotation to describe methods that will participate in the application lifecycle. This
- * method will be called once the model is loaded.
+ * Use this annotation to describe methods that will participate in the
+ * application lifecycle. This method will be called once the model is loaded.
+ *
+ * @since 1.7
  */
 @Documented
 @Target({ ElementType.METHOD })
diff --git a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/ProcessRemovals.java b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/ProcessRemovals.java
index c5e8c11..cebcfec 100644
--- a/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/ProcessRemovals.java
+++ b/bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/lifecycle/ProcessRemovals.java
@@ -17,8 +17,11 @@
 import java.lang.annotation.Target;
 
 /**
- * Use this annotation to describe methods that will participate in the application lifecycle. This
- * method will be called after the {@link ProcessAdditions} calls are done.
+ * Use this annotation to describe methods that will participate in the
+ * application lifecycle. This method will be called after the
+ * {@link ProcessAdditions} calls are done.
+ *
+ * @since 1.7
  */
 @Documented
 @Target({ ElementType.METHOD })