UMLActorpublic interface UMLActor implements UMLClassifierPresents Actors of Use Case diagrams.
From UML point of view an actor is
someone, or something that interacts
with the system. It is participient
of an use case diagram.
An actor is considered to be a user of the
system or some class from another
subsystem (with <> stereotype).
In the second case isClass() return true
and you can get actor as class using
getClassOfInstance().
Use getCommunications() to get
COMMUNICATION links between this actor and
use cases in diagram. |
Methods Summary |
---|
public UMLClass | getClassOfInstance()Returns the class with <> stereotype,
which is associated with this actor.
If no class is associated, it returns null.
| public UMLCommunicationEnumeration | getCommunications()Getting COMMUNICATION links
between this actor and use cases in the use case
diagram.
| public boolean | isClass()Indicates whether this actor is associated with some class.
|
|