Book a Demo

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - mmrack

Pages: [1]
1

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;
 };
};




2
As I make to generate some Delphi classes in an single PAS file ?
???

3
General Board / Associations and "Aggregate option"
« on: October 29, 2004, 05:43:52 pm »
In a trivial bidirectional one to many relationship between "Car" and "Wheel", the "Car" have one attribute named "wheels" that is a "java.util.List" of wheels and "Wheel" have one attribute named "owner" that is the "Car" where wheels are installed.
This works fine and a correct code is generated.
But, when I edit this association (Association Link) and set Aggregate Option with "shared" or "composite", the "owner" attribute is not generated in "Wheel" class.
What's is happening?

4
General Board / Re: Question about setting up a new Java project
« on: November 28, 2003, 04:13:04 pm »
Hi,
Look this


It´s a package structure.
And it


a source generated.

Is it?

Pages: [1]