summaryrefslogtreecommitdiff
path: root/java/demo/Ice/value/InitialI.java
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-06-26 13:17:03 +0000
committerMarc Laukien <marc@zeroc.com>2002-06-26 13:17:03 +0000
commit8f1e92b6298f58bb3f9825c7c192d1a731b82f3d (patch)
tree7f905d3aa9b24b1652f6bd1ae5dfedb68313d752 /java/demo/Ice/value/InitialI.java
parentAdded case-insensitive identifiers. For now, just a warning is issued. With (diff)
downloadice-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.java6
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;
}