diff options
author | Michi Henning <michi@zeroc.com> | 2003-05-21 07:40:18 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-05-21 07:40:18 +0000 |
commit | 639318c3c26076d4fc985b27be705338ce14d001 (patch) | |
tree | 3f7d6b3bfc0945b4fa2ea59f066c67c5f0a2eddd /java/src/IceInternal/Patcher.java | |
parent | Sun C++ 5.5 port (diff) | |
download | ice-639318c3c26076d4fc985b27be705338ce14d001.tar.bz2 ice-639318c3c26076d4fc985b27be705338ce14d001.tar.xz ice-639318c3c26076d4fc985b27be705338ce14d001.zip |
- Fixed bugs relating to use of ends iomanipulator.
- Fixed code generation bug for dictionaries with a key type not derived
from Object.
- Added tests for dictionary slicing.
- Restructured slicing tests to use more intuitive file names and better
directory structure.
Diffstat (limited to 'java/src/IceInternal/Patcher.java')
-rw-r--r-- | java/src/IceInternal/Patcher.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/java/src/IceInternal/Patcher.java b/java/src/IceInternal/Patcher.java new file mode 100644 index 00000000000..11fdbf06adb --- /dev/null +++ b/java/src/IceInternal/Patcher.java @@ -0,0 +1,20 @@ +// ********************************************************************** +// +// Copyright (c) 2003 +// ZeroC, Inc. +// Billerica, MA, USA +// +// All Rights Reserved. +// +// Ice is free software; you can redistribute it and/or modify it under +// the terms of the GNU General Public License version 2 as published by +// the Free Software Foundation. +// +// ********************************************************************** + +package IceInternal; + +public interface Patcher +{ + void patch(Ice.Object v); +}; |