00001 // ********************************************************************** 00002 // 00003 // Copyright (c) 2003-2010 ZeroC, Inc. All rights reserved. 00004 // 00005 // This copy of Ice is licensed to you under the terms described in the 00006 // ICE_LICENSE file included in this distribution. 00007 // 00008 // ********************************************************************** 00009 00010 // Ice version 3.4.1 00011 00012 package cast.interfaces; 00013 00014 // <auto-generated> 00015 // 00016 // Generated from file `CDL.ice' 00017 // 00018 // Warning: do not edit this file. 00019 // 00020 // </auto-generated> 00021 00022 00023 public class _ComponentManagerTie extends _ComponentManagerDisp implements Ice.TieBase 00024 { 00025 public 00026 _ComponentManagerTie() 00027 { 00028 } 00029 00030 public 00031 _ComponentManagerTie(_ComponentManagerOperations delegate) 00032 { 00033 _ice_delegate = delegate; 00034 } 00035 00036 public java.lang.Object 00037 ice_delegate() 00038 { 00039 return _ice_delegate; 00040 } 00041 00042 public void 00043 ice_delegate(java.lang.Object delegate) 00044 { 00045 _ice_delegate = (_ComponentManagerOperations)delegate; 00046 } 00047 00048 public boolean 00049 equals(java.lang.Object rhs) 00050 { 00051 if(this == rhs) 00052 { 00053 return true; 00054 } 00055 if(!(rhs instanceof _ComponentManagerTie)) 00056 { 00057 return false; 00058 } 00059 00060 return _ice_delegate.equals(((_ComponentManagerTie)rhs)._ice_delegate); 00061 } 00062 00063 public int 00064 hashCode() 00065 { 00066 return _ice_delegate.hashCode(); 00067 } 00068 00069 public void 00070 addComponentDescription(cast.cdl.ComponentDescription description, Ice.Current __current) 00071 { 00072 _ice_delegate.addComponentDescription(description, __current); 00073 } 00074 00075 public cast.cdl.ComponentDescription 00076 getComponentDescription(String componentID, Ice.Current __current) 00077 throws cast.CASTException 00078 { 00079 return _ice_delegate.getComponentDescription(componentID, __current); 00080 } 00081 00082 public java.util.Map<java.lang.String, cast.cdl.ComponentDescription> 00083 getComponentDescriptions(Ice.Current __current) 00084 { 00085 return _ice_delegate.getComponentDescriptions(__current); 00086 } 00087 00088 private _ComponentManagerOperations _ice_delegate; 00089 }
1.5.8