Public Member Functions | |
| __construct () | |
| setUmlSequenceDiagram (UmlSequenceDiagram $objUmlSequenceDiagram) | |
| getUmlSequenceDiagram () | |
| getId () | |
| setId ($strId) | |
| getPosition () | |
| setPosition ($intPosition) | |
| getType () | |
| setType ($strType) | |
| setStereotype (UmlSequenceDiagramStereotype $objStereotype) | |
| getStereotype () | |
| getName () | |
| setName ($strName) | |
| getClassName () | |
| setClassName ($strClassName) | |
Protected Attributes | |
| $objUmlSequenceDiagram | |
| $strId | |
| $intPosition | |
| $objStereotype = null | |
| $strName | |
| $strClassName | |
Definition at line 11 of file UmlSequenceDiagramActor.class.php.
| __construct | ( | ) |
Set the default type of the actor
Definition at line 59 of file UmlSequenceDiagramActor.class.php.
References setType().
00060 { 00061 $this->setType( "system" ); 00062 }
| getClassName | ( | ) |
Get the class name of the actor
UmlSequenceDiagramActor->strClassName
Definition at line 218 of file UmlSequenceDiagramActor.class.php.
| getId | ( | ) |
Get the id of the actor
UmlSequenceDiagramActor->strId
Definition at line 99 of file UmlSequenceDiagramActor.class.php.
Referenced by UmlSequenceDiagram::addActor().
| getName | ( | ) |
Get the name of the actor
UmlSequenceDiagramActor->strName
Definition at line 194 of file UmlSequenceDiagramActor.class.php.
Referenced by UmlSequenceDiagramPrinterToHtml::getActor().
| getPosition | ( | ) |
Get the position of the actor
UmlSequenceDiagramActor->intPosition
Definition at line 124 of file UmlSequenceDiagramActor.class.php.
| getStereotype | ( | ) |
Get the stereotype of the actor
Definition at line 182 of file UmlSequenceDiagramActor.class.php.
Referenced by UmlSequenceDiagramPrinterToHtml::getActor().
| getType | ( | ) |
Get the type of the actor
UmlSequenceDiagramActor->objStereotype
Definition at line 149 of file UmlSequenceDiagramActor.class.php.
| getUmlSequenceDiagram | ( | ) |
Returns the uml sequence diagram parent of the actor
UmlSequenceDiagramActor->objUmlSequenceDiagram
Definition at line 87 of file UmlSequenceDiagramActor.class.php.
| setClassName | ( | $ | strClassName | ) |
Set the class name of the actor
UmlSequenceDiagramActor->strClassName
Definition at line 229 of file UmlSequenceDiagramActor.class.php.
References $strClassName.
00229 { 00230 $this->strClassName = $strClassName; 00231 }
| setId | ( | $ | strId | ) |
Set the id of the actor
UmlSequenceDiagramActor->strId
Definition at line 111 of file UmlSequenceDiagramActor.class.php.
References $strId.
00112 { 00113 $this->strId = $strId; 00114 return $this; 00115 }
| setName | ( | $ | strName | ) |
Set the name of the actor
UmlSequenceDiagramActor->strName
Definition at line 206 of file UmlSequenceDiagramActor.class.php.
References $strName.
00207 { 00208 $this->strName = $strName; 00209 }
| setPosition | ( | $ | intPosition | ) |
Set the position of the actor
UmlSequenceDiagramActor->intPosition
Definition at line 136 of file UmlSequenceDiagramActor.class.php.
References $intPosition.
Referenced by UmlSequenceDiagram::addActor().
00137 { 00138 $this->intPosition = $intPosition; 00139 return $this; 00140 }
| setStereotype | ( | UmlSequenceDiagramStereotype $ | objStereotype | ) |
Set the stereotype of the actor
Definition at line 172 of file UmlSequenceDiagramActor.class.php.
00173 { 00174 return $this->objType = $objStereotype; 00175 }
| setType | ( | $ | strType | ) |
Set the type of the actor
UmlSequenceDiagramActor->objType
| UmlSequenceDiagramException |
Definition at line 162 of file UmlSequenceDiagramActor.class.php.
References UmlSequenceDiagramStereotype::getStereotypeByName().
Referenced by __construct().
00163 { 00164 $this->objType = UmlSequenceDiagramStereotype::getStereotypeByName( $strType ); 00165 }
| setUmlSequenceDiagram | ( | UmlSequenceDiagram $ | objUmlSequenceDiagram | ) |
Inform the uml sequence diagram parent of the actor
UmlSequenceDiagramActor->objUmlSequenceDiagram
| UmlSequenceDiagram | $objUmlSequenceDiagram |
Definition at line 73 of file UmlSequenceDiagramActor.class.php.
Referenced by UmlSequenceDiagram::addActor().
00074 { 00075 $this->objUmlSequenceDiagram = $objUmlSequenceDiagram; 00076 return $this; 00077 }
$intPosition [protected] |
Unique Position of each actor of the sequence
integer
Definition at line 33 of file UmlSequenceDiagramActor.class.php.
Referenced by setPosition().
$objStereotype = null [protected] |
Type of the actor
Definition at line 40 of file UmlSequenceDiagramActor.class.php.
$objUmlSequenceDiagram [protected] |
Uml Sequence Diagram parent of this message
Definition at line 19 of file UmlSequenceDiagramActor.class.php.
$strClassName [protected] |
Class of the object actor
string
Definition at line 54 of file UmlSequenceDiagramActor.class.php.
Referenced by setClassName().
$strId [protected] |
Unique Id of each actor of the sequence
string
Definition at line 26 of file UmlSequenceDiagramActor.class.php.
Referenced by setId().
$strName [protected] |
Name of the actor
string
Definition at line 47 of file UmlSequenceDiagramActor.class.php.
Referenced by setName().
1.5.9