clientmanagerpoatie.java

来自「直接放在eclipse环境下」· Java 代码 · 共 113 行

JAVA
113
字号
package org.objectweb.ccm.demo3;
import org.omg.PortableServer.POA;

/**
 *	Generated from IDL definition of interface "ClientManager"
 *	@author JacORB IDL compiler 
 */
public class ClientManagerPOATie
	extends ClientManagerPOA
{
	private ClientManagerOperations _delegate;
	private POA _poa;
	public ClientManagerPOATie(ClientManagerOperations delegate)
	{
		_delegate = delegate;
	}
	public ClientManagerPOATie(ClientManagerOperations delegate, POA poa)
	{
		_delegate = delegate;
		_poa = poa;
	}
	public org.objectweb.ccm.demo3.ClientManager _this()
	{
		return org.objectweb.ccm.demo3.ClientManagerHelper.narrow(_this_object());
	}
	public org.objectweb.ccm.demo3.ClientManager _this(org.omg.CORBA.ORB orb)
	{
		return org.objectweb.ccm.demo3.ClientManagerHelper.narrow(_this_object(orb));
	}
	public ClientManagerOperations _delegate()
	{
		return _delegate;
	}
	public void _delegate(ClientManagerOperations delegate)
	{
		_delegate = delegate;
	}
	public POA _default_POA()
	{
		if( _poa != null )
		{
			return _poa;
		}
		else
		{
			return super._default_POA();
		}
	}
	public org.objectweb.ccm.demo3.Client create_client(java.lang.String name) throws org.omg.Components.CreateFailure	{
		return _delegate.create_client(name);
	}
	public org.omg.CORBA.IRObject get_component_def()	{
		return _delegate.get_component_def();
	}
	public org.objectweb.ccm.demo3.Client create(org.objectweb.ccm.demo3.NamePrimaryKey key) throws org.omg.Components.DuplicateKeyValue,org.omg.Components.CreateFailure,org.omg.Components.InvalidKey	{
		return _delegate.create(key);
	}
	public org.objectweb.ccm.demo3.NamePrimaryKey get_primary_key(org.objectweb.ccm.demo3.Client comp)	{
		return _delegate.get_primary_key(comp);
	}
	public void remove(org.objectweb.ccm.demo3.NamePrimaryKey key) throws org.omg.Components.UnknownKeyValue,org.omg.Components.RemoveFailure,org.omg.Components.InvalidKey	{
_delegate.remove(key);
	}
	public void remove_home() throws org.omg.Components.RemoveFailure	{
_delegate.remove_home();
	}
	public org.omg.CORBA.IRObject get_home_def()	{
		return _delegate.get_home_def();
	}
	public org.omg.Components.Deployment.Container get_container()	{
		return _delegate.get_container();
	}
	public org.objectweb.ccm.demo3.Client find_client(java.lang.String name) throws org.omg.Components.FinderFailure	{
		return _delegate.find_client(name);
	}
	public void remove_component(org.omg.Components.CCMObject comp) throws org.omg.Components.RemoveFailure	{
_delegate.remove_component(comp);
	}
	public org.omg.Components.CCMObject[] get_components()	{
		return _delegate.get_components();
	}
	public org.objectweb.ccm.demo3.Client find_by_primary_key(org.objectweb.ccm.demo3.NamePrimaryKey key) throws org.omg.Components.UnknownKeyValue,org.omg.Components.FinderFailure,org.omg.Components.InvalidKey	{
		return _delegate.find_by_primary_key(key);
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?