summaryrefslogtreecommitdiff
path: root/java/test/Ice/objects/FI.java
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2007-06-19 11:25:17 -0700
committerMark Spruiell <mes@zeroc.com>2007-06-19 11:25:17 -0700
commitddcfe70b4f05fb00e466486fc19076147f79298d (patch)
treeacfa4428263b22b3f9226d04a3fe8f910bd21bdd /java/test/Ice/objects/FI.java
parentFor UDP multicast bind to the multicast address rather than 0.0.0.0 unless on... (diff)
downloadice-ddcfe70b4f05fb00e466486fc19076147f79298d.tar.bz2
ice-ddcfe70b4f05fb00e466486fc19076147f79298d.tar.xz
ice-ddcfe70b4f05fb00e466486fc19076147f79298d.zip
bug 2245 - adding support for protected class data members
Diffstat (limited to 'java/test/Ice/objects/FI.java')
-rw-r--r--java/test/Ice/objects/FI.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/java/test/Ice/objects/FI.java b/java/test/Ice/objects/FI.java
new file mode 100644
index 00000000000..6ad282efb17
--- /dev/null
+++ b/java/test/Ice/objects/FI.java
@@ -0,0 +1,30 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2007 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 final class FI extends F
+{
+ public
+ FI()
+ {
+ }
+
+ public
+ FI(E e)
+ {
+ super(e, e);
+ }
+
+ public boolean
+ checkValues(Ice.Current current)
+ {
+ return e1 != null && e1 == e2;
+ }
+}