FileDocCategorySizeDatePackage
UMLActor.javaAPI DocExample2156Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scriptapi.UML

UMLActor

public interface UMLActor implements UMLClassifier
Presents 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.
version
2.1.05 21.07.1998
author
Andrei Ivanov
see
UMLUseCase
see
UMLUseCaseDiagram

Fields Summary
Constructors Summary
Methods Summary
public UMLClassgetClassOfInstance()
Returns the class with <> stereotype, which is associated with this actor. If no class is associated, it returns null.

deprecated
Not implemented yet.
return
Associated class; can be null.
see
UMLActor#isClass

public UMLCommunicationEnumerationgetCommunications()
Getting COMMUNICATION links between this actor and use cases in the use case diagram.

return
COMMUNICATION links enumerator of the actor
see
UMLCommunication
see
UMLUseCase
see
UMLLink#COMMUNICATION

public booleanisClass()
Indicates whether this actor is associated with some class.

deprecated
Not implemented yet.
return
true - if associated.