Public Member Functions | |
| setContent ($strContent) | |
| getContent () | |
| setShowLine ($booShowLine) | |
| getShowLine () | |
| setActor (UmlSequenceDiagramActor $objActor) | |
| getActor () | |
| setLeft ($booLeft) | |
| getLeft () | |
| setRight ($booRight) | |
| getRight () | |
| putInLeftOfActor (UmlSequenceDiagramActor $objActor) | |
| putInRightOfActor (UmlSequenceDiagramActor $objActor) | |
Protected Attributes | |
| $strContent = "" | |
| $booShowLine = false | |
| $booLeft = true | |
| $objActor | |
Notes help to describe some information about a slice of the diagram. As with all UML Diagram, the Notes are shown in a rectangle with a folder-olver corner.
Definition at line 19 of file UmlSequenceDiagramNote.class.php.
| getActor | ( | ) |
Get the actor what the note it is relative to
Definition at line 115 of file UmlSequenceDiagramNote.class.php.
Referenced by UmlSequenceDiagramPrinterToHtml::getNote().
| getContent | ( | ) |
Get the note content
Definition at line 71 of file UmlSequenceDiagramNote.class.php.
Referenced by UmlSequenceDiagramPrinterToHtml::getNote().
| getLeft | ( | ) |
Get if the note should be in the left of the actor
Definition at line 137 of file UmlSequenceDiagramNote.class.php.
Referenced by getRight().
| getRight | ( | ) |
| getShowLine | ( | ) |
Get the show line option
Definition at line 93 of file UmlSequenceDiagramNote.class.php.
| putInLeftOfActor | ( | UmlSequenceDiagramActor $ | objActor | ) |
Put the note on the left of the received actor
| UmlSequenceDiagramActor | $objActor |
Definition at line 173 of file UmlSequenceDiagramNote.class.php.
References setActor(), and setLeft().
00174 { 00175 $this->setActor( $objActor ); 00176 $this->setLeft( true ); 00177 return $this; 00178 }
| putInRightOfActor | ( | UmlSequenceDiagramActor $ | objActor | ) |
Put the note on the right of the received actor
| UmlSequenceDiagramActor | $objActor |
Definition at line 186 of file UmlSequenceDiagramNote.class.php.
References setActor(), and setRight().
00187 { 00188 $this->setActor( $objActor ); 00189 $this->setRight( true ); 00190 return $this; 00191 }
| setActor | ( | UmlSequenceDiagramActor $ | objActor | ) |
Set the actor what the note it is relative to
| UmlSequenceDiagramActor | $objActor |
Definition at line 104 of file UmlSequenceDiagramNote.class.php.
Referenced by putInLeftOfActor(), and putInRightOfActor().
00105 { 00106 $this->objActor = $objActor; 00107 return $this; 00108 }
| setContent | ( | $ | strContent | ) |
Set the note content
| string | $strContent |
Definition at line 60 of file UmlSequenceDiagramNote.class.php.
References $strContent.
00061 { 00062 $this->strContent = (string)$strContent; 00063 return $this; 00064 }
| setLeft | ( | $ | booLeft | ) |
Set if the note should be in the left of the actor
| boolean | $booLeft |
Definition at line 126 of file UmlSequenceDiagramNote.class.php.
References $booLeft.
Referenced by putInLeftOfActor(), and setRight().
00127 { 00128 $this->booLeft = (boolean)$booLeft; 00129 return $this; 00130 }
| setRight | ( | $ | booRight | ) |
Set if the note should be in the right of the actor
| boolean | $booRight |
Definition at line 148 of file UmlSequenceDiagramNote.class.php.
References $booLeft, and setLeft().
Referenced by putInRightOfActor().
00149 { 00150 $booRight = (boolean)$booRight; 00151 $booLeft = !$booRight; 00152 return $this->setLeft( $booLeft ); 00153 }
| setShowLine | ( | $ | booShowLine | ) |
Set the show line option
| boolean | $booShowLine |
Definition at line 82 of file UmlSequenceDiagramNote.class.php.
References $booShowLine.
00083 { 00084 $this->booShowLine = (boolean) $booShowLine; 00085 return $this; 00086 }
$booLeft = true [protected] |
Flag to control the position of the note in relative to the actor. true is on the left and false is on the right
boolean
Definition at line 44 of file UmlSequenceDiagramNote.class.php.
Referenced by getRight(), setLeft(), and setRight().
$booShowLine = false [protected] |
Flag to control if the line between the actor and the note should be visible or not
boolean
Definition at line 35 of file UmlSequenceDiagramNote.class.php.
Referenced by setShowLine().
$objActor [protected] |
Actor what the note it is relative to
Definition at line 52 of file UmlSequenceDiagramNote.class.php.
$strContent = "" [protected] |
String with the content of the diagram note
string
Definition at line 26 of file UmlSequenceDiagramNote.class.php.
Referenced by setContent().
1.5.9