diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-09-26 16:05:03 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-09-26 16:05:03 +0200 |
commit | 16130f195e98c659755cc7a4f275cd40a09a3296 (patch) | |
tree | efdad11013a606946bf25af32201584098e0e449 /java | |
parent | Minor javadoc fixes (diff) | |
download | ice-16130f195e98c659755cc7a4f275cd40a09a3296.tar.bz2 ice-16130f195e98c659755cc7a4f275cd40a09a3296.tar.xz ice-16130f195e98c659755cc7a4f275cd40a09a3296.zip |
Few additional javadoc fixes
Diffstat (limited to 'java')
4 files changed, 6 insertions, 6 deletions
diff --git a/java/src/Glacier2/src/main/java/Glacier2/SessionFactoryHelper.java b/java/src/Glacier2/src/main/java/Glacier2/SessionFactoryHelper.java index 8653443befc..07a2fc260ed 100644 --- a/java/src/Glacier2/src/main/java/Glacier2/SessionFactoryHelper.java +++ b/java/src/Glacier2/src/main/java/Glacier2/SessionFactoryHelper.java @@ -13,7 +13,7 @@ package Glacier2; * A helper class for using Glacier2 with GUI applications. * * Applications should create a session factory for each Glacier2 router to which the application will - * connect. To connect with the Glacier2 router, call {@link SessionFactory#connect}. The callback object is + * connect. To connect with the Glacier2 router, call {@link SessionFactoryHelper#connect}. The callback object is * notified of the various life cycle events. Once the session is torn down for whatever reason, the application * can use the session factory to create another connection. */ @@ -167,7 +167,7 @@ public class SessionFactoryHelper * * Sets the protocol that will be used by the session factory to establish the connection. * - * @param protocol. + * @param protocol The communication protocol. */ synchronized public void setProtocol(String protocol) { diff --git a/java/src/Glacier2/src/main/java/Glacier2/SessionHelper.java b/java/src/Glacier2/src/main/java/Glacier2/SessionHelper.java index e84bbf565ca..0d222963366 100644 --- a/java/src/Glacier2/src/main/java/Glacier2/SessionHelper.java +++ b/java/src/Glacier2/src/main/java/Glacier2/SessionHelper.java @@ -34,7 +34,7 @@ public class SessionHelper /** * Destroys the Glacier2 session. * - * Once the session has been destroyed, {@link SessionCallback.disconnected} is called on + * Once the session has been destroyed, {@link SessionCallback#disconnected} is called on * the associated callback object. */ public void @@ -233,7 +233,7 @@ public class SessionHelper * Connects a Glacier2 session using user name and password credentials. * * Once the connection is established, {@link SessionCallback#connected} is called on the callback object; - * upon failure {@link SessionCallback.connectFailed} is called with the exception. + * upon failure {@link SessionCallback#connectFailed} is called with the exception. * * @param username The user name. * @param password The password. diff --git a/java/src/Ice/src/main/java/IceSSL/Plugin.java b/java/src/Ice/src/main/java/IceSSL/Plugin.java index 7301c37ed6a..9be0c0a332e 100644 --- a/java/src/Ice/src/main/java/IceSSL/Plugin.java +++ b/java/src/Ice/src/main/java/IceSSL/Plugin.java @@ -19,7 +19,7 @@ public interface Plugin extends Ice.Plugin * plug-in is initialized. Therefore, the application must set * the property <code>Ice.InitPlugins</code> to zero, call * <code>setContext</code> to set the context, and finally - * invoke {@link PluginManager#initializePlugins}. + * invoke {@link Ice.PluginManager#initializePlugins}. * <p> * If an application supplies its own SSL context, the * plug-in skips its normal property-based configuration. diff --git a/java/src/Ice/src/main/java/IceSSL/PluginFactory.java b/java/src/Ice/src/main/java/IceSSL/PluginFactory.java index cb8063fe148..610415090ea 100644 --- a/java/src/Ice/src/main/java/IceSSL/PluginFactory.java +++ b/java/src/Ice/src/main/java/IceSSL/PluginFactory.java @@ -23,7 +23,7 @@ public class PluginFactory implements Ice.PluginFactory * * @return The new plug-in. <code>null</code> can be returned to indicate * that a general error occurred. Alternatively, <code>create</code> can throw - * {@link PluginInitializationException} to provide more detailed information. + * {@link Ice.PluginInitializationException} to provide more detailed information. **/ @Override public Ice.Plugin |