📄 consumermanagerexplicitpoatie.java
字号:
package org.objectweb.ccm.demo3;
import org.omg.PortableServer.POA;
/**
* Generated from IDL definition of interface "ConsumerManagerExplicit"
* @author JacORB IDL compiler
*/
public class ConsumerManagerExplicitPOATie
extends ConsumerManagerExplicitPOA
{
private ConsumerManagerExplicitOperations _delegate;
private POA _poa;
public ConsumerManagerExplicitPOATie(ConsumerManagerExplicitOperations delegate)
{
_delegate = delegate;
}
public ConsumerManagerExplicitPOATie(ConsumerManagerExplicitOperations delegate, POA poa)
{
_delegate = delegate;
_poa = poa;
}
public org.objectweb.ccm.demo3.ConsumerManagerExplicit _this()
{
return org.objectweb.ccm.demo3.ConsumerManagerExplicitHelper.narrow(_this_object());
}
public org.objectweb.ccm.demo3.ConsumerManagerExplicit _this(org.omg.CORBA.ORB orb)
{
return org.objectweb.ccm.demo3.ConsumerManagerExplicitHelper.narrow(_this_object(orb));
}
public ConsumerManagerExplicitOperations _delegate()
{
return _delegate;
}
public void _delegate(ConsumerManagerExplicitOperations delegate)
{
_delegate = delegate;
}
public POA _default_POA()
{
if( _poa != null )
{
return _poa;
}
else
{
return super._default_POA();
}
}
public org.objectweb.ccm.demo3.Consumer create_consumer(java.lang.String name) throws org.omg.Components.CreateFailure {
return _delegate.create_consumer(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.omg.CORBA.IRObject get_component_def() {
return _delegate.get_component_def();
}
public org.omg.CORBA.IRObject get_home_def() {
return _delegate.get_home_def();
}
public void remove_home() throws org.omg.Components.RemoveFailure {
_delegate.remove_home();
}
public org.objectweb.ccm.demo3.Consumer find_consumer(java.lang.String name) throws org.omg.Components.FinderFailure {
return _delegate.find_consumer(name);
}
public org.omg.Components.Deployment.Container get_container() {
return _delegate.get_container();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -