本文整理了Java中org.omg.CORBA.Object._get_interface_def()
方法的一些代码示例,展示了Object._get_interface_def()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Object._get_interface_def()
方法的具体详情如下:
包路径:org.omg.CORBA.Object
类名称:Object
方法名:_get_interface_def
暂无
代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb
public org.omg.CORBA.Object _get_interface_def()
{
return object._get_interface_def() ;
}
代码示例来源:origin: org.jacorb/jacorb
/**
* This method was created by a SmartGuide.
* @param counterPart org.omg.CORBA.Object
*/
public static ObjectRepresentant create(org.omg.CORBA.Object counterPart) {
TypeSystemNode typeSystemNode =
(IRInterface)RemoteTypeSystem.createTypeSystemNode(
InterfaceDefHelper.narrow( counterPart._get_interface_def()));
return create(counterPart,typeSystemNode,null);
}
/**
代码示例来源:origin: org.jacorb/jacorb-services
public void connect_typed_pull_supplier(TypedPullSupplier typedPullSupplier)
throws AlreadyConnected, TypeError
{
logger_.info("connect typed_pull_supplier");
checkIsNotConnected();
connectClient(typedPullSupplier);
pullSupplier_ = typedPullSupplier;
typedPullSupplier_ = pullSupplier_.get_typed_supplier();
interfaceDef_ = InterfaceDefHelper.narrow(typedPullSupplier_._get_interface_def());
if (interfaceDef_ == null)
{
throw new TypeError("Could not access Interface Definition for TypedPullSupplier [" + typedPullSupplier_ + "]");
}
if (!typedPullSupplier_._is_a(supportedInterface_))
{
throw new TypeError();
}
pollUtil_.startTask(pollInterval_);
}
内容来源于网络,如有侵权,请联系作者删除!