01: package org.omg.PortableServer;
02:
03: /** stream-based skeleton class */
04:
05: import org.omg.PortableServer.POA;
06:
07: public class AdapterActivatorPOATie extends AdapterActivatorPOA {
08: private AdapterActivatorOperations _delegate;
09:
10: private POA _poa;
11:
12: public AdapterActivatorPOATie(AdapterActivatorOperations delegate) {
13: _delegate = delegate;
14: }
15:
16: public AdapterActivatorPOATie(AdapterActivatorOperations delegate,
17: POA poa) {
18: _delegate = delegate;
19: _poa = poa;
20: }
21:
22: public org.omg.PortableServer.AdapterActivator _this () {
23: return org.omg.PortableServer.AdapterActivatorHelper
24: .narrow(_this _object());
25: }
26:
27: public org.omg.PortableServer.AdapterActivator _this (
28: org.omg.CORBA.ORB orb) {
29: return org.omg.PortableServer.AdapterActivatorHelper
30: .narrow(_this _object(orb));
31: }
32:
33: public AdapterActivatorOperations _delegate() {
34: return _delegate;
35: }
36:
37: public void _delegate(AdapterActivatorOperations delegate) {
38: _delegate = delegate;
39: }
40:
41: public boolean unknown_adapter(org.omg.PortableServer.POA parent,
42: java.lang.String name) {
43: return _delegate.unknown_adapter(parent, name);
44: }
45:
46: }
|