diff options
author | Marc Laukien <marc@zeroc.com> | 2002-06-26 13:17:03 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-06-26 13:17:03 +0000 |
commit | 8f1e92b6298f58bb3f9825c7c192d1a731b82f3d (patch) | |
tree | 7f905d3aa9b24b1652f6bd1ae5dfedb68313d752 /java/demo/Ice/value/InitialI.java | |
parent | Added case-insensitive identifiers. For now, just a warning is issued. With (diff) | |
download | ice-8f1e92b6298f58bb3f9825c7c192d1a731b82f3d.tar.bz2 ice-8f1e92b6298f58bb3f9825c7c192d1a731b82f3d.tar.xz ice-8f1e92b6298f58bb3f9825c7c192d1a731b82f3d.zip |
fixes
Diffstat (limited to 'java/demo/Ice/value/InitialI.java')
-rw-r--r-- | java/demo/Ice/value/InitialI.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/demo/Ice/value/InitialI.java b/java/demo/Ice/value/InitialI.java index 8227babfda3..cb56837054e 100644 --- a/java/demo/Ice/value/InitialI.java +++ b/java/demo/Ice/value/InitialI.java @@ -30,20 +30,20 @@ class InitialI extends Initial } public Simple - simple(Ice.Current current) + getSimple(Ice.Current current) { return _simple; } public void - printer(PrinterHolder impl, PrinterPrxHolder proxy, Ice.Current current) + getPrinter(PrinterHolder impl, PrinterPrxHolder proxy, Ice.Current current) { impl.value = _printer; proxy.value = _printerProxy; } public Printer - derivedPrinter(Ice.Current current) + getDerivedPrinter(Ice.Current current) { return _derivedPrinter; } |