コード例 #1
0
 public static HeatmapInfoPrx __read(IceInternal.BasicStream __is) {
   Ice.ObjectPrx proxy = __is.readProxy();
   if (proxy != null) {
     HeatmapInfoPrxHelper result = new HeatmapInfoPrxHelper();
     result.__copyFrom(proxy);
     return result;
   }
   return null;
 }
コード例 #2
0
 public static HeatmapInfoPrx uncheckedCast(Ice.ObjectPrx __obj, String __facet) {
   HeatmapInfoPrx __d = null;
   if (__obj != null) {
     Ice.ObjectPrx __bb = __obj.ice_facet(__facet);
     HeatmapInfoPrxHelper __h = new HeatmapInfoPrxHelper();
     __h.__copyFrom(__bb);
     __d = __h;
   }
   return __d;
 }
コード例 #3
0
 public static HeatmapInfoPrx uncheckedCast(Ice.ObjectPrx __obj) {
   HeatmapInfoPrx __d = null;
   if (__obj != null) {
     if (__obj instanceof HeatmapInfoPrx) {
       __d = (HeatmapInfoPrx) __obj;
     } else {
       HeatmapInfoPrxHelper __h = new HeatmapInfoPrxHelper();
       __h.__copyFrom(__obj);
       __d = __h;
     }
   }
   return __d;
 }
コード例 #4
0
 public static HeatmapInfoPrx checkedCast(Ice.ObjectPrx __obj, String __facet) {
   HeatmapInfoPrx __d = null;
   if (__obj != null) {
     Ice.ObjectPrx __bb = __obj.ice_facet(__facet);
     try {
       if (__bb.ice_isA(ice_staticId())) {
         HeatmapInfoPrxHelper __h = new HeatmapInfoPrxHelper();
         __h.__copyFrom(__bb);
         __d = __h;
       }
     } catch (Ice.FacetNotExistException ex) {
     }
   }
   return __d;
 }
コード例 #5
0
 public static HeatmapInfoPrx checkedCast(
     Ice.ObjectPrx __obj, java.util.Map<String, String> __ctx) {
   HeatmapInfoPrx __d = null;
   if (__obj != null) {
     if (__obj instanceof HeatmapInfoPrx) {
       __d = (HeatmapInfoPrx) __obj;
     } else {
       if (__obj.ice_isA(ice_staticId(), __ctx)) {
         HeatmapInfoPrxHelper __h = new HeatmapInfoPrxHelper();
         __h.__copyFrom(__obj);
         __d = __h;
       }
     }
   }
   return __d;
 }