diff options
Diffstat (limited to 'java/demo/Ice/plugin/HelloPluginFactoryI.java')
-rw-r--r-- | java/demo/Ice/plugin/HelloPluginFactoryI.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/java/demo/Ice/plugin/HelloPluginFactoryI.java b/java/demo/Ice/plugin/HelloPluginFactoryI.java new file mode 100644 index 00000000000..36a4b78ddf1 --- /dev/null +++ b/java/demo/Ice/plugin/HelloPluginFactoryI.java @@ -0,0 +1,19 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +import Ice.PluginFactory; + +public class HelloPluginFactoryI implements Ice.PluginFactory +{ + public Ice.Plugin + create(Ice.Communicator communicator, String name, String[] args) + { + return new HelloPluginI(communicator); + } +} |