diff options
author | Matthew Newhook <matthew@zeroc.com> | 2014-08-14 10:37:16 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2014-08-14 10:37:16 -0230 |
commit | 13c8da45cf4c892a17bda4f224a832bafd8e1bf4 (patch) | |
tree | d251dc62af721096338ac5be0ecbeaa825ce0e9e /java/demo/Ice/plugin/HelloPluginFactoryI.java | |
parent | More fixes to the interrupt test. (diff) | |
download | ice-13c8da45cf4c892a17bda4f224a832bafd8e1bf4.tar.bz2 ice-13c8da45cf4c892a17bda4f224a832bafd8e1bf4.tar.xz ice-13c8da45cf4c892a17bda4f224a832bafd8e1bf4.zip |
- Cleaned up all demos.
- Fixed all demo warnings.
- Fixed applet and swing demo to use invocation timeout, not connect
timeouts.
Diffstat (limited to 'java/demo/Ice/plugin/HelloPluginFactoryI.java')
-rw-r--r-- | java/demo/Ice/plugin/HelloPluginFactoryI.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/java/demo/Ice/plugin/HelloPluginFactoryI.java b/java/demo/Ice/plugin/HelloPluginFactoryI.java index 951bec921bf..5a2754e694d 100644 --- a/java/demo/Ice/plugin/HelloPluginFactoryI.java +++ b/java/demo/Ice/plugin/HelloPluginFactoryI.java @@ -7,11 +7,12 @@ // // ********************************************************************** -import Ice.PluginFactory; + public class HelloPluginFactoryI implements Ice.PluginFactory { - public Ice.Plugin + @Override + public Ice.Plugin create(Ice.Communicator communicator, String name, String[] args) { return new HelloPluginI(communicator); |