Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2011-09-02 17:40:40 +0000
committerEike Stepper2011-09-02 17:40:40 +0000
commit39e55d340b79a835ec815ea688d8f3011506a935 (patch)
tree561a25786c263a84b30fd6023ac90096a568f243 /plugins/org.eclipse.net4j.util.doc/javadoc/org/eclipse/net4j/util/om/OSGiActivator.html
parent43e934e2b6d9df9b72eb229da769ee8954079c61 (diff)
downloadcdo-39e55d340b79a835ec815ea688d8f3011506a935.tar.gz
cdo-39e55d340b79a835ec815ea688d8f3011506a935.tar.xz
cdo-39e55d340b79a835ec815ea688d8f3011506a935.zip
update javadoc to juno
Diffstat (limited to 'plugins/org.eclipse.net4j.util.doc/javadoc/org/eclipse/net4j/util/om/OSGiActivator.html')
-rw-r--r--plugins/org.eclipse.net4j.util.doc/javadoc/org/eclipse/net4j/util/om/OSGiActivator.html44
1 files changed, 22 insertions, 22 deletions
diff --git a/plugins/org.eclipse.net4j.util.doc/javadoc/org/eclipse/net4j/util/om/OSGiActivator.html b/plugins/org.eclipse.net4j.util.doc/javadoc/org/eclipse/net4j/util/om/OSGiActivator.html
index e0d584575d..c66adc49bb 100644
--- a/plugins/org.eclipse.net4j.util.doc/javadoc/org/eclipse/net4j/util/om/OSGiActivator.html
+++ b/plugins/org.eclipse.net4j.util.doc/javadoc/org/eclipse/net4j/util/om/OSGiActivator.html
@@ -243,7 +243,7 @@ Class OSGiActivator</H2>
<TD><CODE><B><A HREF="../../../../../org/eclipse/net4j/util/om/OSGiActivator.html#start(org.osgi.framework.BundleContext)">start</A></B>(org.osgi.framework.BundleContext&nbsp;context)</CODE>
<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called when this bundle is started so the Framework can perform the
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called when this bundle is started so the Framework can perform the
bundle-specific activities necessary to start this bundle.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
@@ -252,7 +252,7 @@ Class OSGiActivator</H2>
<TD><CODE><B><A HREF="../../../../../org/eclipse/net4j/util/om/OSGiActivator.html#stop(org.osgi.framework.BundleContext)">stop</A></B>(org.osgi.framework.BundleContext&nbsp;context)</CODE>
<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called when this bundle is stopped so the Framework can perform the
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Called when this bundle is stopped so the Framework can perform the
bundle-specific activities necessary to stop the bundle.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
@@ -361,12 +361,12 @@ public final void <B>start</B>(org.osgi.framework.BundleContext&nbsp;context)
throws <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</A></PRE>
<DL>
<DD><B>Description copied from interface: <CODE>org.osgi.framework.BundleActivator</CODE></B></DD>
-<DD>Called when this bundle is started so the Framework can perform the
- bundle-specific activities necessary to start this bundle. This method
- can be used to register services or to allocate any resources that this
- bundle needs.
-
- <p>
+<DD>Called when this bundle is started so the Framework can perform the
+ bundle-specific activities necessary to start this bundle. This method
+ can be used to register services or to allocate any resources that this
+ bundle needs.
+
+ <p>
This method must complete and return to its caller in a timely manner.
<P>
<DD><DL>
@@ -375,9 +375,9 @@ public final void <B>start</B>(org.osgi.framework.BundleContext&nbsp;context)
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>context</CODE> - The execution context of the bundle being started.
<DT><B>Throws:</B>
-<DD><CODE><A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</A></CODE> - If this method throws an exception, this
- bundle is marked as stopped and the Framework will remove this
- bundle's listeners, unregister all services registered by this
+<DD><CODE><A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</A></CODE> - If this method throws an exception, this
+ bundle is marked as stopped and the Framework will remove this
+ bundle's listeners, unregister all services registered by this
bundle, and release all services used by this bundle.</DL>
</DD>
</DL>
@@ -390,14 +390,14 @@ public final void <B>stop</B>(org.osgi.framework.BundleContext&nbsp;context)
throws <A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</A></PRE>
<DL>
<DD><B>Description copied from interface: <CODE>org.osgi.framework.BundleActivator</CODE></B></DD>
-<DD>Called when this bundle is stopped so the Framework can perform the
- bundle-specific activities necessary to stop the bundle. In general, this
- method should undo the work that the <code>BundleActivator.start</code>
- method started. There should be no active threads that were started by
- this bundle when this bundle returns. A stopped bundle must not call any
- Framework objects.
-
- <p>
+<DD>Called when this bundle is stopped so the Framework can perform the
+ bundle-specific activities necessary to stop the bundle. In general, this
+ method should undo the work that the <code>BundleActivator.start</code>
+ method started. There should be no active threads that were started by
+ this bundle when this bundle returns. A stopped bundle must not call any
+ Framework objects.
+
+ <p>
This method must complete and return to its caller in a timely manner.
<P>
<DD><DL>
@@ -406,9 +406,9 @@ public final void <B>stop</B>(org.osgi.framework.BundleContext&nbsp;context)
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>context</CODE> - The execution context of the bundle being stopped.
<DT><B>Throws:</B>
-<DD><CODE><A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</A></CODE> - If this method throws an exception, the
- bundle is still marked as stopped, and the Framework will remove
- the bundle's listeners, unregister all services registered by the
+<DD><CODE><A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</A></CODE> - If this method throws an exception, the
+ bundle is still marked as stopped, and the Framework will remove
+ the bundle's listeners, unregister all services registered by the
bundle, and release all services used by the bundle.</DL>
</DD>
</DL>

Back to the top