以下のIDLファイルが与えられた場合
#include <CosNotifyComm.idl>
module TestEvent
{
typedef CosNotifyComm::SequencePushConsumer Subscriber;
typedef CosNotification::StructuredEvent CoreEvent;
};
Jacorb ( v3.2 ) は、エラーを含む SubscriberHelper クラスを生成します。ただし、CoreEventHelper クラスは正しく生成されます。例えば:
public static void insert (org.omg.CORBA.Any any、CosNotifyComm.SequencePushConsumer s)
正しいコードは
public static void insert (org.omg.CORBA.Any any、org.omg.CosNotifyComm.SequencePushConsumer s)
これはバグですか?これを回避するには?