summaryrefslogtreecommitdiff
path: root/javaunohelper
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-11-15 12:30:49 +0000
committerOliver Bolte <obo@openoffice.org>2004-11-15 12:30:49 +0000
commit475c1ddad309df075a85bcc639e906c5ff7621c8 (patch)
treea15a31abc397d00b280b77c3073f37e7eb31fca3 /javaunohelper
parente22aa7059d515e23273d8ee15544890c92d8a355 (diff)
INTEGRATION: CWS tbe13 (1.9.4); FILE MERGED
2004/10/27 12:55:53 tbe 1.9.4.3: #i34749# missing since tags in Java/C++ bootstrap documentation 2004/09/28 16:13:50 tbe 1.9.4.2: #i34749# missing since tags in Java/C++ bootstrap documentation 2004/09/23 14:28:15 tbe 1.9.4.1: #i34010# Bootstrap.java does not compile with jdk1.5
Diffstat (limited to 'javaunohelper')
-rw-r--r--javaunohelper/com/sun/star/comp/helper/Bootstrap.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/javaunohelper/com/sun/star/comp/helper/Bootstrap.java b/javaunohelper/com/sun/star/comp/helper/Bootstrap.java
index 0859c628f2a9..d2d50af42aae 100644
--- a/javaunohelper/com/sun/star/comp/helper/Bootstrap.java
+++ b/javaunohelper/com/sun/star/comp/helper/Bootstrap.java
@@ -2,9 +2,9 @@
*
* $RCSfile: Bootstrap.java,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: pjunck $ $Date: 2004-11-03 09:06:59 $
+ * last change: $Author: obo $ $Date: 2004-11-15 13:30:49 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -224,11 +224,11 @@ public class Bootstrap {
if (null != bootstrap_parameters)
{
pairs = new String [ 2 * bootstrap_parameters.size() ];
- Enumeration enum = bootstrap_parameters.keys();
+ Enumeration keys = bootstrap_parameters.keys();
int n = 0;
- while (enum.hasMoreElements())
+ while (keys.hasMoreElements())
{
- String name = (String)enum.nextElement();
+ String name = (String)keys.nextElement();
pairs[ n++ ] = name;
pairs[ n++ ] = (String)bootstrap_parameters.get( name );
}
@@ -252,6 +252,8 @@ public class Bootstrap {
* Bootstraps the component context from a UNO installation.
*
* @return a bootstrapped component context.
+ *
+ * @since UDK 3.1.0
*/
public static final XComponentContext bootstrap()
throws BootstrapException {