summaryrefslogtreecommitdiff
path: root/java/test/Ice/binding/TestI.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/test/Ice/binding/TestI.java')
-rw-r--r--java/test/Ice/binding/TestI.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/java/test/Ice/binding/TestI.java b/java/test/Ice/binding/TestI.java
new file mode 100644
index 00000000000..18f41349dbc
--- /dev/null
+++ b/java/test/Ice/binding/TestI.java
@@ -0,0 +1,23 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2005 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 Test.*;
+
+public class TestI extends _TestIntfDisp
+{
+ TestI()
+ {
+ }
+
+ public String
+ getAdapterName(Ice.Current current)
+ {
+ return current.adapter.getName();
+ }
+}