1 package org.omg.PortableServer; 2 3 4 5 import org.omg.PortableServer.POA ; 6 public class AdapterActivatorPOATie 7 extends AdapterActivatorPOA 8 { 9 private AdapterActivatorOperations _delegate; 10 11 private POA _poa; 12 public AdapterActivatorPOATie(AdapterActivatorOperations delegate) 13 { 14 _delegate = delegate; 15 } 16 public AdapterActivatorPOATie(AdapterActivatorOperations delegate, POA poa) 17 { 18 _delegate = delegate; 19 _poa = poa; 20 } 21 public org.omg.PortableServer.AdapterActivator _this() 22 { 23 return org.omg.PortableServer.AdapterActivatorHelper.narrow(_this_object()); 24 } 25 public org.omg.PortableServer.AdapterActivator _this(org.omg.CORBA.ORB orb) 26 { 27 return org.omg.PortableServer.AdapterActivatorHelper.narrow(_this_object(orb)); 28 } 29 public AdapterActivatorOperations _delegate() 30 { 31 return _delegate; 32 } 33 public void _delegate(AdapterActivatorOperations delegate) 34 { 35 _delegate = delegate; 36 } 37 public boolean unknown_adapter(org.omg.PortableServer.POA parent, java.lang.String name) 38 { 39 return _delegate.unknown_adapter(parent,name); 40 } 41 42 } 43 | Popular Tags |