diff options
Diffstat (limited to 'java/test/Ice/exceptions/ObjectFactoryI.java')
-rw-r--r-- | java/test/Ice/exceptions/ObjectFactoryI.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/java/test/Ice/exceptions/ObjectFactoryI.java b/java/test/Ice/exceptions/ObjectFactoryI.java new file mode 100644 index 00000000000..70e9379dee2 --- /dev/null +++ b/java/test/Ice/exceptions/ObjectFactoryI.java @@ -0,0 +1,23 @@ +// ********************************************************************** +// +// 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. +// +// ********************************************************************** + +package test.Ice.exceptions; + + +public final class ObjectFactoryI implements Ice.ObjectFactory +{ + public Ice.Object create(String s) + { + return null; + } + + public void destroy() + { + } +} |