summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/ListPatcher.java
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2014-10-20 11:40:05 -0230
committerMatthew Newhook <matthew@zeroc.com>2014-10-20 11:40:05 -0230
commitb51469b41167fb86ae2059a15cf0475c53fdda7b (patch)
treefc85d6ca2efd89c67e1e4e7438f437c3e08313f4 /java/src/IceInternal/ListPatcher.java
parentFixed (ICE-5695) - IceSSL: misleading exception (diff)
downloadice-b51469b41167fb86ae2059a15cf0475c53fdda7b.tar.bz2
ice-b51469b41167fb86ae2059a15cf0475c53fdda7b.tar.xz
ice-b51469b41167fb86ae2059a15cf0475c53fdda7b.zip
Down with ant. From the gradle to the grave.
Diffstat (limited to 'java/src/IceInternal/ListPatcher.java')
-rw-r--r--java/src/IceInternal/ListPatcher.java65
1 files changed, 0 insertions, 65 deletions
diff --git a/java/src/IceInternal/ListPatcher.java b/java/src/IceInternal/ListPatcher.java
deleted file mode 100644
index 9b44590cc9d..00000000000
--- a/java/src/IceInternal/ListPatcher.java
+++ /dev/null
@@ -1,65 +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 ListPatcher<T> implements Patcher, Ice.ReadObjectCallback
-{
- public
- ListPatcher(java.util.List<T> list, Class<T> cls, String type, int index)
- {
- _list = list;
- _cls = cls;
- _type = type;
- _index = index;
- }
-
- @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());
- }
- }
-
- //
- // This isn't very efficient for sequentially-accessed lists, but there
- // isn't much we can do about it as long as a new patcher instance is
- // created for each element.
- //
- _list.set(_index, _cls.cast(v));
- }
-
- @Override
- public String
- type()
- {
- return _type;
- }
-
- @Override
- public void
- invoke(Ice.Object v)
- {
- patch(v);
- }
-
- private java.util.List<T> _list;
- private Class<T> _cls;
- private String _type;
- private int _index;
-}