A few class model questions
A few class model questions
- Subject: A few class model questions
- From: Jeff Wentworth <email@hidden>
- Date: Thu, 10 Apr 2008 12:18:11 -0700 (PDT)
I have been experimenting with the class modeling and
diagramming feature in Xcode 3.0. It looks like a
great feature. A few questions have come up for me:
1. In the diagram I see that lines with open arrows
are used to connect inherited classes to their base
classes. Are any other types of UML lines drawn, say
to indicate the aggregatio, composition, and
dependency relations among classes? See the
"Static-Model (Class) Diagram" section of this link
about a third of the way down to see what I mean:
http://www.holub.com/goodies/uml/
For instance, when I create a class diagram for the
C++ code at the end of this message, there appears no
relationship lines for the fact that class Derived
contains instances of class Stuff.
2. What does the line icon in the class diagram do?
When I select it and attempt to draw a line, it
appears and then disappears once the mouse button is
released.
3. Is it possible to copy the diagram into the
clipboard so that it can be pasted as an image into
other documents such as Keynote or MS Word? Or is
there some other means of export, aside from printing
to a pdf file?
Thanks.
class Stuff {
};
class Base {
};
class Derived : public Base {
private:
Stuff _stuff[7];
};
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden