diff options
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() { |