summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/DictionaryPatcher.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/IceInternal/DictionaryPatcher.java')
-rw-r--r--java/src/IceInternal/DictionaryPatcher.java60
1 files changed, 0 insertions, 60 deletions
diff --git a/java/src/IceInternal/DictionaryPatcher.java b/java/src/IceInternal/DictionaryPatcher.java
deleted file mode 100644
index 6413c73444e..00000000000
--- a/java/src/IceInternal/DictionaryPatcher.java
+++ /dev/null
@@ -1,60 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2014 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 IceInternal;
-
-public class DictionaryPatcher<K, V> implements Patcher, Ice.ReadObjectCallback
-{
- public
- DictionaryPatcher(java.util.Map<K, V> dict, Class<V> cls, String type, K key)
- {
- _dict = dict;
- _cls = cls;
- _type = type;
- _key = key;
- }
-
- @Override
- public void
- patch(Ice.Object v)
- {
- if(v != null)
- {
- //
- // Raise ClassCastException if the element doesn't match the expected type.
- //
- if(!_cls.isInstance(v))
- {
- throw new ClassCastException("expected element of type " + _cls.getName() + " but received " +
- v.getClass().getName());
- }
- }
-
- _dict.put(_key, _cls.cast(v));
- }
-
- @Override
- public String
- type()
- {
- return _type;
- }
-
- @Override
- public void
- invoke(Ice.Object v)
- {
- patch(v);
- }
-
- private java.util.Map<K, V> _dict;
- private Class<V> _cls;
- private String _type;
- private K _key;
-}