00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 package cast.interfaces;
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 public class _ComponentFactoryTie extends _ComponentFactoryDisp implements Ice.TieBase
00024 {
00025 public
00026 _ComponentFactoryTie()
00027 {
00028 }
00029
00030 public
00031 _ComponentFactoryTie(_ComponentFactoryOperations 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 = (_ComponentFactoryOperations)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 _ComponentFactoryTie))
00056 {
00057 return false;
00058 }
00059
00060 return _ice_delegate.equals(((_ComponentFactoryTie)rhs)._ice_delegate);
00061 }
00062
00063 public int
00064 hashCode()
00065 {
00066 return _ice_delegate.hashCode();
00067 }
00068
00069 public String
00070 getVersionString(Ice.Current __current)
00071 {
00072 return _ice_delegate.getVersionString(__current);
00073 }
00074
00075 public CASTComponentPrx
00076 newComponent(String id, String type, boolean newProcess, Ice.Current __current)
00077 throws cast.ComponentCreationException
00078 {
00079 return _ice_delegate.newComponent(id, type, newProcess, __current);
00080 }
00081
00082 public ManagedComponentPrx
00083 newManagedComponent(String id, String type, boolean newProcess, Ice.Current __current)
00084 throws cast.ComponentCreationException
00085 {
00086 return _ice_delegate.newManagedComponent(id, type, newProcess, __current);
00087 }
00088
00089 public TaskManagerPrx
00090 newTaskManager(String id, String type, boolean newProcess, Ice.Current __current)
00091 throws cast.ComponentCreationException
00092 {
00093 return _ice_delegate.newTaskManager(id, type, newProcess, __current);
00094 }
00095
00096 public UnmanagedComponentPrx
00097 newUnmanagedComponent(String id, String type, boolean newProcess, Ice.Current __current)
00098 throws cast.ComponentCreationException
00099 {
00100 return _ice_delegate.newUnmanagedComponent(id, type, newProcess, __current);
00101 }
00102
00103 public WorkingMemoryPrx
00104 newWorkingMemory(String id, String type, boolean newProcess, Ice.Current __current)
00105 throws cast.ComponentCreationException
00106 {
00107 return _ice_delegate.newWorkingMemory(id, type, newProcess, __current);
00108 }
00109
00110 private _ComponentFactoryOperations _ice_delegate;
00111 }