鉴于以下 IDL 文件
#include <CosNotifyComm.idl>
module TestEvent
{
typedef CosNotifyComm::SequencePushConsumer Subscriber;
typedef CosNotification::StructuredEvent CoreEvent;
};
Jacorb ( v3.2 ) 生成带有错误的 SubscriberHelper 类。但是 CoreEventHelper 类是正确生成的。例如:
公共静态无效插入 (org.omg.CORBA.Any any, CosNotifyComm.SequencePushConsumer s)
正确的代码是
公共静态无效插入(org.omg.CORBA.Any any, org.omg.CosNotifyComm.SequencePushConsumer s)
这是一个错误吗?如何解决这个问题?