Book a Demo

Author Topic: CORBASequence oddities  (Read 4666 times)

Wowbagger

  • EA User
  • **
  • Posts: 69
  • Karma: +0/-0
    • View Profile
CORBASequence oddities
« on: December 15, 2009, 05:02:56 am »
We are working on some CORBA modeling, and are getting something we don't understand here.

We have a CORBA Sequence of floats:

typedef sequence<float> floatseq;

Which, when reverse engineered, gives us a class diagram like this:

|-----------------------------|
|                     float   |
| <<CORBASequence>>           |
|  floatseq                   |
|-----------------------------|


Where the "float" is in italics.

But no-where can we find how to generate such a class directly (i.e. without just writing the IDL and reverse engineering it), nor can we find how to change that "float" to something else.

What (property|attribute|value) of the object maps to that item?

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8110
  • Karma: +119/-20
    • View Profile
Re: CORBASequence oddities
« Reply #1 on: December 15, 2009, 08:31:20 am »
Element | Advanced | Set Parents and Interfaces.  (Ctrl+I)

Wowbagger

  • EA User
  • **
  • Posts: 69
  • Karma: +0/-0
    • View Profile
Re: CORBASequence oddities
« Reply #2 on: December 17, 2009, 01:36:53 am »
Thank you.