diff options
author | Matthew Newhook <matthew@zeroc.com> | 2014-08-12 15:50:25 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2014-08-12 15:50:25 -0230 |
commit | 2f5c841cfce2ae5ff26e2e373c3ea7188da8b75b (patch) | |
tree | b460e22e91a9fbb9cfb71631303963fa94dd2c9c /java/test/Ice/plugin/plugins/PluginTwoFailFactory.java | |
parent | ICE-5492 Tcp Loopback Fast Path for C#/C++ on Windows (diff) | |
download | ice-2f5c841cfce2ae5ff26e2e373c3ea7188da8b75b.tar.bz2 ice-2f5c841cfce2ae5ff26e2e373c3ea7188da8b75b.tar.xz ice-2f5c841cfce2ae5ff26e2e373c3ea7188da8b75b.zip |
Added eclipse project settings for java.
Fix lots of warnings in Ice for Java.
Diffstat (limited to 'java/test/Ice/plugin/plugins/PluginTwoFailFactory.java')
-rw-r--r-- | java/test/Ice/plugin/plugins/PluginTwoFailFactory.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/java/test/Ice/plugin/plugins/PluginTwoFailFactory.java b/java/test/Ice/plugin/plugins/PluginTwoFailFactory.java index a2c9657a511..1b5ee8fb4af 100644 --- a/java/test/Ice/plugin/plugins/PluginTwoFailFactory.java +++ b/java/test/Ice/plugin/plugins/PluginTwoFailFactory.java @@ -11,6 +11,7 @@ package test.Ice.plugin.plugins; public class PluginTwoFailFactory implements Ice.PluginFactory { + @Override public Ice.Plugin create(Ice.Communicator communicator, String name, String[] args) { return new PluginTwoFail(communicator); @@ -23,6 +24,7 @@ public class PluginTwoFailFactory implements Ice.PluginFactory super(communicator); } + @Override public void initialize() { _one = (BasePluginFail)_communicator.getPluginManager().getPlugin("PluginOneFail"); @@ -32,6 +34,7 @@ public class PluginTwoFailFactory implements Ice.PluginFactory _initialized = true; } + @Override public void destroy() { test(!_one.isDestroyed()); @@ -42,6 +45,7 @@ public class PluginTwoFailFactory implements Ice.PluginFactory _destroyed = true; } + @Override protected void finalize() throws Throwable { try |