diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-02-14 12:06:57 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-02-14 12:06:57 +0000 |
commit | 770b66fc97582743bf045f709feac5c468c9d06d (patch) | |
tree | de6f5b22ed6c5a22d072337a647c9d3ac626eaa1 /java/test/Ice/binding/TestI.java | |
parent | Fixed another race condition in the activator test suite. (diff) | |
download | ice-770b66fc97582743bf045f709feac5c468c9d06d.tar.bz2 ice-770b66fc97582743bf045f709feac5c468c9d06d.tar.xz ice-770b66fc97582743bf045f709feac5c468c9d06d.zip |
- Added ice_cacheConnection, ice_endpointSelection
- Fixed a bug where connection.close(true) would print a connection
warning.
- Fixed a bug where ice_newEndpoints would throw a ClassCastException
- Added test/Ice/binding test suite.
Diffstat (limited to 'java/test/Ice/binding/TestI.java')
-rw-r--r-- | java/test/Ice/binding/TestI.java | 23 |
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(); + } +} |