__construct() public method

public __construct ( $id = null, $name = null, $status = null, $attribute = null, $LabelType = null )
 public function __construct($id = null, $name = null, $status = null, $LabelType = null)
 {
     parent::__construct();
     $this->id = $id;
     $this->name = $name;
     $this->status = $status;
     $this->LabelType = $LabelType;
 }
 public function __construct($id, LabeledMarkupContainer $source)
 {
     parent::__construct($id);
     $this->source = $source;
     $this->source->setOutputMarkupId(true);
 }