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 - costa

Pages: [1]
1
General Board / Show assosiation arrow after adding new property
« on: June 28, 2006, 12:36:38 am »
Is it possible after adding a new property which type is one of a Model classes, to show this assosiation on a class diagram?
By deafult it doesn't show it.

2
General Board / Copy preprocessor macros
« on: June 21, 2006, 01:14:05 am »
Is it possible to copy a preprocessor macros from one project to other one?
Is it also possible to get the macros from source code?

3
Uml Process / Converting a class into association class
« on: July 24, 2006, 11:58:59 pm »
Is it possible to convert an existed class into associated class and how?

4
Uml Process / Calling to a method of public member
« on: June 05, 2006, 03:41:59 am »
How can I show on a sequence diagram:
Object A calls to a method F of an object B that is a public member of a class C, I mean:

class cB {
public:
  void F();
};

class cC {
public:
  cB B;
};

class cA {
  cC C;
  void My() { C.B;}
};

Pages: [1]