/**
  * Setter inclusive
  *
  * @param String $inclusive String
  *
  * @return void
  */
 public function setInclusive($inclusive)
 {
     if (!$inclusive) {
         $this->inclusive = null;
         return;
     }
     $bl = new CCDA_base_bl();
     $bl->setData($inclusive);
     $this->inclusive = $bl;
 }
 /**
  * Setter unsorted
  *
  * @param String $inst String
  *
  * @return void
  */
 function setUnsorted($inst)
 {
     if (!$inst) {
         $this->unsorted = null;
         return;
     }
     $bl = new CCDA_base_bl();
     $bl->setData($inst);
     $this->unsorted = $bl;
 }
Exemple #3
0
 /**
  * Setter value
  *
  * @param String $value String
  *
  * @return void
  */
 function setValue($value)
 {
     if (!$value) {
         $this->value = null;
         return;
     }
     $val = new CCDA_base_bl();
     $val->setData($value);
     $this->value = $val;
 }
 /**
  * Assigne contextConductionInd à true
  *
  * @return void
  */
 function setContextConductionInd()
 {
     $bl = new CCDA_base_bl();
     $bl->setData("true");
     $this->contextConductionInd = $bl;
 }
Exemple #5
0
 /**
  * Setter isNotOrdered
  *
  * @param String $isNotOrdered String
  *
  * @return void
  */
 public function setIsNotOrdered($isNotOrdered)
 {
     if (!$isNotOrdered) {
         $this->isNotOrdered = null;
         return;
     }
     $isNotOrd = new CCDA_base_bl();
     $isNotOrd->setData($isNotOrdered);
     $this->isNotOrdered = $isNotOrd;
 }
 /**
  * Get the properties of our class as strings
  *
  * @return array
  */
 function getProps()
 {
     parent::getProps();
     $props["data"] = "booleen xml|data notnull";
     return $props;
 }
Exemple #7
0
 /**
  * Setter displayable
  *
  * @param String $displayable String
  *
  * @return void
  */
 public function setDisplayable($displayable)
 {
     if (!$displayable) {
         $this->displayable = null;
         return;
     }
     $bl = new CCDA_base_bl();
     $bl->setData($displayable);
     $this->displayable = $bl;
 }
 /**
  * Setter negationInd
  *
  * @param String $inst String
  *
  * @return void
  */
 function setNegationInd($inst)
 {
     if (!$inst) {
         $this->negationInd = null;
         return;
     }
     $bl = new CCDA_base_bl();
     $bl->setData($inst);
     $this->negationInd = $bl;
 }
 /**
  * Setter InstitutionSpecified
  *
  * @param String $institutionSpecified String
  *
  * @return void
  */
 public function setInstitutionSpecified($institutionSpecified)
 {
     if (!$institutionSpecified) {
         $this->institutionSpecified = null;
         return;
     }
     $bl = new CCDA_base_bl();
     $bl->setData($institutionSpecified);
     $this->institutionSpecified = $bl;
 }