diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-03-28 14:03:50 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-03-28 14:03:50 +0000 |
commit | 3edb9d1e2ca92fff1bea08d23338cabee47dd2e7 (patch) | |
tree | b62a1dc465ac160616672c6a64f630396e4fae05 /java/src/Ice/ObjectPrxHelperBase.java | |
parent | Synced with Ice for C++ changes. (diff) | |
download | ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.tar.bz2 ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.tar.xz ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.zip |
Fixed half of bug 847: ice_newIdentiy -> ice_identity, ice_newFacet ->
ice_facet, etc
Diffstat (limited to 'java/src/Ice/ObjectPrxHelperBase.java')
-rw-r--r-- | java/src/Ice/ObjectPrxHelperBase.java | 40 |
1 files changed, 35 insertions, 5 deletions
diff --git a/java/src/Ice/ObjectPrxHelperBase.java b/java/src/Ice/ObjectPrxHelperBase.java index aafa0088ce4..16c9e769db9 100644 --- a/java/src/Ice/ObjectPrxHelperBase.java +++ b/java/src/Ice/ObjectPrxHelperBase.java @@ -212,7 +212,7 @@ public class ObjectPrxHelperBase implements ObjectPrx } public final ObjectPrx - ice_newIdentity(Identity newIdentity) + ice_identity(Identity newIdentity) { if(newIdentity.equals(_reference.getIdentity())) { @@ -226,6 +226,12 @@ public class ObjectPrxHelperBase implements ObjectPrx } } + public final ObjectPrx + ice_newIdentity(Identity newIdentity) + { + return ice_identity(newIdentity); + } + public final java.util.Map ice_getContext() { @@ -233,7 +239,7 @@ public class ObjectPrxHelperBase implements ObjectPrx } public final ObjectPrx - ice_newContext(java.util.Map newContext) + ice_context(java.util.Map newContext) { ObjectPrxHelperBase proxy = new ObjectPrxHelperBase(); proxy.setup(_reference.changeContext(newContext)); @@ -241,6 +247,12 @@ public class ObjectPrxHelperBase implements ObjectPrx } public final ObjectPrx + ice_newContext(java.util.Map newContext) + { + return ice_context(newContext); + } + + public final ObjectPrx ice_defaultContext() { ObjectPrxHelperBase proxy = new ObjectPrxHelperBase(); @@ -255,7 +267,7 @@ public class ObjectPrxHelperBase implements ObjectPrx } public final ObjectPrx - ice_newFacet(String newFacet) + ice_facet(String newFacet) { if(newFacet == null) { @@ -274,6 +286,12 @@ public class ObjectPrxHelperBase implements ObjectPrx } } + public final ObjectPrx + ice_newFacet(String newFacet) + { + return ice_facet(newFacet); + } + public final String ice_getAdapterId() { @@ -281,7 +299,7 @@ public class ObjectPrxHelperBase implements ObjectPrx } public final ObjectPrx - ice_newAdapterId(String newAdapterId) + ice_adapterId(String newAdapterId) { if(newAdapterId.equals(_reference.getAdapterId())) { @@ -295,6 +313,12 @@ public class ObjectPrxHelperBase implements ObjectPrx } } + public final ObjectPrx + ice_newAdapterId(String newAdapterId) + { + return ice_adapterId(newAdapterId); + } + public final Endpoint[] ice_getEndpoints() { @@ -302,7 +326,7 @@ public class ObjectPrxHelperBase implements ObjectPrx } public final ObjectPrx - ice_newEndpoints(Endpoint[] newEndpoints) + ice_endpoints(Endpoint[] newEndpoints) { if(java.util.Arrays.equals(newEndpoints, _reference.getEndpoints())) { @@ -318,6 +342,12 @@ public class ObjectPrxHelperBase implements ObjectPrx } } + public final ObjectPrx + ice_newEndpoints(Endpoint[] newEndpoints) + { + return ice_endpoints(newEndpoints); + } + public final int ice_getLocatorCacheTimeout() { |