summaryrefslogtreecommitdiff
path: root/gnu/classpath
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2006-02-12 19:38:46 +0000
committerTom Tromey <tromey@redhat.com>2006-02-12 19:38:46 +0000
commit169a6017a2a8d28eccf526aa4fdcfd8ab8de7561 (patch)
tree37d942fa34050699ceca01468add03a9a4ad7e28 /gnu/classpath
parent05506e15e13610b6da8e8a0f7f0d67dbfd4d17a0 (diff)
downloadclasspath-169a6017a2a8d28eccf526aa4fdcfd8ab8de7561.tar.gz
* gnu/classpath/ServiceProviderLoadingAction.java: Javadoc fix.
* gnu/classpath/ServiceFactory.java (ServiceIterator): Javadoc fix. (securityContext): Likewise. (log): Likewise.
Diffstat (limited to 'gnu/classpath')
-rw-r--r--gnu/classpath/ServiceFactory.java7
-rw-r--r--gnu/classpath/ServiceProviderLoadingAction.java6
2 files changed, 7 insertions, 6 deletions
diff --git a/gnu/classpath/ServiceFactory.java b/gnu/classpath/ServiceFactory.java
index 711a9042c..122a79c96 100644
--- a/gnu/classpath/ServiceFactory.java
+++ b/gnu/classpath/ServiceFactory.java
@@ -282,7 +282,7 @@ public final class ServiceFactory
* An iterator over service providers that are listed in service
* provider configuration files, which get passed as an Enumeration
* of URLs. This is a helper class for {@link
- * ServiceFactory#lookupProviders}.
+ * ServiceFactory#lookupProviders(Class, ClassLoader)}.
*
* @author <a href="mailto:brawer@dandelis.ch">Sascha Brawer</a>
*/
@@ -314,7 +314,8 @@ public final class ServiceFactory
* The security context used when loading and initializing service
* providers. We want to load and initialize all plug-in service
* providers under the same security context, namely the one that
- * was active when {@link #lookupProviders} has been called.
+ * was active when {@link #lookupProviders(Class, ClassLoader)} has
+ * been called.
*/
private final AccessControlContext securityContext;
@@ -527,7 +528,7 @@ public final class ServiceFactory
* framework. This call returns very quickly if no log message will
* be produced, so there is not much overhead in the standard case.
*
- * @param the severity of the message, for instance {@link
+ * @param level the severity of the message, for instance {@link
* Level#WARNING}.
*
* @param msg the log message, for instance <code>&#x201c;Could not
diff --git a/gnu/classpath/ServiceProviderLoadingAction.java b/gnu/classpath/ServiceProviderLoadingAction.java
index b5e59cb4b..9f9dc51cb 100644
--- a/gnu/classpath/ServiceProviderLoadingAction.java
+++ b/gnu/classpath/ServiceProviderLoadingAction.java
@@ -48,9 +48,9 @@ import java.security.PrivilegedExceptionAction;
* <code>PriviledgedAction</code> in order to restrict the loaded
* service providers to the {@link java.security.AccessControlContext}
* that was active when {@link
- * gnu.classpath.ServiceFactory#lookupProviders} was called, even
- * though the actual loading is delayed to the time when the provider
- * is actually needed.
+ * gnu.classpath.ServiceFactory#lookupProviders(Class, ClassLoader)} was
+ * called, even though the actual loading is delayed to the time when the
+ * provider is actually needed.
*
* @author <a href="mailto:brawer@dandelis.ch">Sascha Brawer</a>
*/