1 | <?php |
||
17 | class GraphOptions { |
||
18 | private $graphName; |
||
19 | private $graphSize; |
||
20 | private $graphFontSize; |
||
21 | private $nodeShape; |
||
22 | private $nodeLabel; |
||
23 | private $rankDir; |
||
24 | private $arrowHead; |
||
25 | private $wordWrapLimit; |
||
26 | private $parentRelation; |
||
27 | private $enableGraphLink; |
||
28 | private $showGraphLabel; |
||
29 | private $showGraphColor; |
||
30 | private $showGraphLegend; |
||
31 | |||
32 | public function __construct( $options ) { |
||
47 | |||
48 | public function getGraphName(): string { |
||
51 | |||
52 | public function getGraphSize(): string { |
||
55 | |||
56 | public function getGraphFontSize(): int { |
||
59 | |||
60 | public function getNodeShape(): string { |
||
63 | |||
64 | public function getNodeLabel(): string { |
||
67 | |||
68 | public function getRankDir(): string { |
||
71 | |||
72 | public function getArrowHead(): string { |
||
75 | |||
76 | public function getWordWrapLimit(): int { |
||
79 | |||
80 | public function getParentRelation(): string { |
||
83 | |||
84 | public function isGraphLink(): bool { |
||
87 | |||
88 | public function isGraphLabel(): bool { |
||
91 | |||
92 | public function isGraphColor(): bool { |
||
95 | |||
96 | public function isGraphLegend(): bool { |
||
99 | } |