1 2 5 14 package org.jacorb.trading.impl; 15 16 import org.omg.CORBA.*; 17 import org.omg.CosTrading.*; 18 19 20 23 public class TraderComp 24 { 25 private Lookup m_lookup; 26 private Register m_register; 27 private Link m_link; 28 private Proxy m_proxy; 29 private Admin m_admin; 30 31 32 public Lookup getLookupInterface() 33 { 34 return m_lookup; 35 } 36 37 38 public void setLookupInterface(Lookup value) 39 { 40 m_lookup = value; 41 } 42 43 44 public Register getRegisterInterface() 45 { 46 return m_register; 47 } 48 49 50 public void setRegisterInterface(Register value) 51 { 52 m_register = value; 53 } 54 55 56 public Link getLinkInterface() 57 { 58 return m_link; 59 } 60 61 62 public void setLinkInterface(Link value) 63 { 64 m_link = value; 65 } 66 67 68 public Proxy getProxyInterface() 69 { 70 return m_proxy; 71 } 72 73 74 public void setProxyInterface(Proxy value) 75 { 76 m_proxy = value; 77 } 78 79 80 public Admin getAdminInterface() 81 { 82 return m_admin; 83 } 84 85 86 public void setAdminInterface(Admin value) 87 { 88 m_admin = value; 89 } 90 } 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | Popular Tags |