ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
DggContainer.php
Go to the documentation of this file.
1<?php
36{
42 private $_spIdMax;
43
49 private $_cDgSaved;
50
56 private $_cSpSaved;
57
64
70 private $_OPT = array();
71
77 private $_IDCLs = array();
78
84 public function getSpIdMax()
85 {
86 return $this->_spIdMax;
87 }
88
94 public function setSpIdMax($value)
95 {
96 $this->_spIdMax = $value;
97 }
98
104 public function getCDgSaved()
105 {
106 return $this->_cDgSaved;
107 }
108
114 public function setCDgSaved($value)
115 {
116 $this->_cDgSaved = $value;
117 }
118
124 public function getCSpSaved()
125 {
126 return $this->_cSpSaved;
127 }
128
134 public function setCSpSaved($value)
135 {
136 $this->_cSpSaved = $value;
137 }
138
144 public function getBstoreContainer()
145 {
147 }
148
154 public function setBstoreContainer($bstoreContainer)
155 {
156 $this->_bstoreContainer = $bstoreContainer;
157 }
158
165 public function setOPT($property, $value)
166 {
167 $this->_OPT[$property] = $value;
168 }
169
176 public function getOPT($property)
177 {
178 if (isset($this->_OPT[$property])) {
179 return $this->_OPT[$property];
180 }
181 return null;
182 }
183
189 public function getIDCLs()
190 {
191 return $this->_IDCLs;
192 }
193
199 public function setIDCLs($pValue)
200 {
201 $this->_IDCLs = $pValue;
202 }
203}
An exception for terminatinating execution or to throw for unit testing.
getIDCLs()
Get identifier clusters.
setCDgSaved($value)
Set total number of drawings saved.
setOPT($property, $value)
Set an option for the drawing group.
setBstoreContainer($bstoreContainer)
Set BLIP Store Container.
getOPT($property)
Get an option for the drawing group.
getSpIdMax()
Get maximum shape index of all shapes in all drawings (plus one)
getBstoreContainer()
Get BLIP Store Container.
getCDgSaved()
Get total number of drawings saved.
setIDCLs($pValue)
Set identifier clusters.
getCSpSaved()
Get total number of shapes saved (including group shapes)
setSpIdMax($value)
Set maximum shape index of all shapes in all drawings (plus one)
setCSpSaved($value)
Set total number of shapes saved (including group shapes)