diff options
author | Michi Henning <michi@zeroc.com> | 2009-06-04 16:19:02 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2009-06-04 16:19:02 +1000 |
commit | 45a3f61401e8c6cccc841fa43a4b35f9f5a444a8 (patch) | |
tree | 2d328e013b11a6e3724256cb471f6827c94b6e7d /java/src/Ice/PluginFactory.java | |
parent | Fixed BCC compile errors (diff) | |
download | ice-45a3f61401e8c6cccc841fa43a4b35f9f5a444a8.tar.bz2 ice-45a3f61401e8c6cccc841fa43a4b35f9f5a444a8.tar.xz ice-45a3f61401e8c6cccc841fa43a4b35f9f5a444a8.zip |
Lots of javadoc comments.
Diffstat (limited to 'java/src/Ice/PluginFactory.java')
-rw-r--r-- | java/src/Ice/PluginFactory.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/java/src/Ice/PluginFactory.java b/java/src/Ice/PluginFactory.java index 4017d3ea0c2..e4b9913211d 100644 --- a/java/src/Ice/PluginFactory.java +++ b/java/src/Ice/PluginFactory.java @@ -9,7 +9,19 @@ package Ice; +/** + * Applications implement this interface to provide a plug-in factory + * to the Ice run time. + **/ public interface PluginFactory { + /** + * Called by the Ice run time to create a new plug-in. + * + * @param communicator The communicator that is in the process of being initialized. + * @param name The name of the plug-in. + * @param args The arguments that are specified in the plug-ins configuration. + * @return The plug-in that was created by this method. + **/ Plugin create(Communicator communicator, String name, String[] args); } |