/**
  * Constructor
  */
 function __construct()
 {
     parent::__construct(SUBMISSION_FILE_REVIEW_ATTACHMENT);
 }
 /**
  * Constructor
  * @param $noteId int Note ID
  */
 function __construct($noteId)
 {
     parent::__construct(SUBMISSION_FILE_QUERY);
     $this->_noteId = $noteId;
 }
 /**
  * Constructor
  * @param $assocId int Association ID
  */
 function __construct($assocId)
 {
     assert(is_numeric($assocId));
     $this->_assocId = (int) $assocId;
     parent::__construct(SUBMISSION_FILE_DEPENDENT);
 }
 /**
  * Constructor
  */
 function __construct($fileStageId, $viewableOnly = false)
 {
     parent::__construct($fileStageId, $viewableOnly);
 }
 /**
  * Constructor
  */
 function __construct()
 {
     parent::__construct(SUBMISSION_FILE_FINAL);
     $this->setViewableOnly(true);
 }