Author Topic: Generate Corba IDL files from class Diagrams  (Read 4566 times)

mmrack

  • EA Novice
  • *
  • Posts: 4
  • Karma: +0/-0
    • View Profile
Generate Corba IDL files from class Diagrams
« on: May 28, 2003, 11:36:21 am »

Hi,

Would not be interesting the possibility to generate Corba IDL files from a class diagram?

Look the example above:

-------------------
UnitPeople.PAS
-------------------
TPeople = class
 protected
   Fname : string;
 public
   procedure setName(Value: string);
   functino  getName : string;
 published
   property name : string read getName write setName;
end;

-------------------
UnitPeople.IDL
-------------------
module UnitPeople {
 interface TPeople {
   attribute string name;
 };
};