00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 package cast.examples.autogen;
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 public class _WordServerAsComponentTie extends _WordServerAsComponentDisp implements Ice.TieBase
00024 {
00025 public
00026 _WordServerAsComponentTie()
00027 {
00028 }
00029
00030 public
00031 _WordServerAsComponentTie(_WordServerAsComponentOperations 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 = (_WordServerAsComponentOperations)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 _WordServerAsComponentTie))
00056 {
00057 return false;
00058 }
00059
00060 return _ice_delegate.equals(((_WordServerAsComponentTie)rhs)._ice_delegate);
00061 }
00062
00063 public int
00064 hashCode()
00065 {
00066 return _ice_delegate.hashCode();
00067 }
00068
00069 public String
00070 getNewWord(Ice.Current __current)
00071 {
00072 return _ice_delegate.getNewWord(__current);
00073 }
00074
00075 public void
00076 beat(Ice.Current __current)
00077 {
00078 _ice_delegate.beat(__current);
00079 }
00080
00081 public void
00082 configure(java.util.Map<java.lang.String, java.lang.String> config, Ice.Current __current)
00083 {
00084 _ice_delegate.configure(config, __current);
00085 }
00086
00087 public void
00088 destroy(Ice.Current __current)
00089 {
00090 _ice_delegate.destroy(__current);
00091 }
00092
00093 public String
00094 getID(Ice.Current __current)
00095 {
00096 return _ice_delegate.getID(__current);
00097 }
00098
00099 public void
00100 run(Ice.Current __current)
00101 {
00102 _ice_delegate.run(__current);
00103 }
00104
00105 public void
00106 setComponentManager(cast.interfaces.ComponentManagerPrx man, Ice.Current __current)
00107 {
00108 _ice_delegate.setComponentManager(man, __current);
00109 }
00110
00111 public void
00112 setID(String id, Ice.Current __current)
00113 {
00114 _ice_delegate.setID(id, __current);
00115 }
00116
00117 public void
00118 setTimeServer(cast.interfaces.TimeServerPrx ts, Ice.Current __current)
00119 {
00120 _ice_delegate.setTimeServer(ts, __current);
00121 }
00122
00123 public void
00124 start(Ice.Current __current)
00125 {
00126 _ice_delegate.start(__current);
00127 }
00128
00129 public void
00130 stop(Ice.Current __current)
00131 {
00132 _ice_delegate.stop(__current);
00133 }
00134
00135 private _WordServerAsComponentOperations _ice_delegate;
00136 }