Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Java > who is arrow mean in UML

Reply
Thread Tools

who is arrow mean in UML

 
 
jtl.zheng
Guest
Posts: n/a
 
      07-21-2006

the arrow is just like "------->"

and it has two kinds: the dotted line and the straight line
what are these two kinds mean in UML

thanks you
^_^

 
Reply With Quote
 
 
 
 
IchBin
Guest
Posts: n/a
 
      07-21-2006
jtl.zheng wrote:
> the arrow is just like "------->"
>
> and it has two kinds: the dotted line and the straight line
> what are these two kinds mean in UML
>
> thanks you
> ^_^
>


On which UML Diagram?

Thanks in Advance...
IchBin, Pocono Lake, Pa, USA http://weconsultants.phpnet.us
__________________________________________________ ________________________

'If there is one, Knowledge is the "Fountain of Youth"'
-William E. Taylor, Regular Guy (1952-)
 
Reply With Quote
 
 
 
 
new
Guest
Posts: n/a
 
      07-21-2006

IchBin wrote:
> jtl.zheng wrote:
> > the arrow is just like "------->"
> >
> > and it has two kinds: the dotted line and the straight line
> > what are these two kinds mean in UML


Which UML diagram? Class or state or ?

 
Reply With Quote
 
Bjorn Abelli
Guest
Posts: n/a
 
      07-21-2006

"jtl.zheng" <> skrev i meddelandet
news: oups.com...
>
> the arrow is just like "------->"
>
> and it has two kinds: the dotted line and the straight
> line what are these two kinds mean in UML


There are a *lot* of straight and dotted lined arrows in UML, so it's a bit
difficult to answer it in short, e.g. with full triangle heads, the straight
lines mean "inheritance" (extends), while the dotted ones mean
"implementation" (implements).

------------------------------------------------

Otherwise in a static chart diagram the straight lined arrow can mean
"uni-directional association", while the dotted line means "dependency". A
small example:


class A {}

class B
{
// uni-directional association
A a;
}

class C
{
// dependency, but no association
void method(A a) {...}
}


C ----> A (dotted line)
B ----> A (but with a straight line)

-----------------------------------------------

In a sequence diagram, the straight lined arrow means a message (method
call), while the dotted arrow is where the method returns to the caller.

-----------------------------------------------
Here's a summarized reference card:
http://tnerual.eriogerg.free.fr/umlqrc.pdf

Here you can find the complete UML specification:
http://www-306.ibm.com/software/rati...mentation.html


/// Bjorn A


 
Reply With Quote
 
jtl.zheng
Guest
Posts: n/a
 
      07-21-2006
to IchBin and new :
sorry....I means Class Diagram
but I get it now, thank you all the same


to Bjorn Abelli:
thank you very much for your answer and your references
I get it now...^_^

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
weighted mean; weighted standard error of the mean (sem) C Barrington-Leigh Python 1 09-10-2010 02:03 AM
Damned red arrow won't go away! Captain Infinity Firefox 7 07-30-2005 03:38 PM
[OT] "UML for Java Programmers" or "UML Distilled" Rogue Chameleon Java 0 10-18-2004 02:27 PM
[OT] UML question / UML newsgroup Stefan Siegl Java 0 09-06-2004 08:40 AM
Re: After pushing IE's "backwards arrow", how can I have my page be dynamically updated ? Bill Priess ASP .Net 0 08-05-2003 04:18 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57