コード例 #1
0
 /**
  * @param string $code
  * @param string $description
  * @param degreeCheckoutStatusType $degreeCheckoutStatus
  * @param schoolCollege $schoolCollege
  * @param careerType $career
  * @param plansType $plans
  */
 public function __construct($code, $description, $degreeCheckoutStatus, $schoolCollege, $career, $plans)
 {
     parent::__construct($code, $description);
     $this->degreeCheckoutStatus = $degreeCheckoutStatus;
     $this->schoolCollege = $schoolCollege;
     $this->career = $career;
     $this->plans = $plans;
 }
コード例 #2
0
 /**
  * @param string $code
  * @param string $description
  * @param codeDescriptionPairType $type
  */
 public function __construct($code, $description, $type)
 {
     parent::__construct($code, $description);
     $this->type = $type;
 }
コード例 #3
0
 /**
  * @param string $code
  * @param string $description
  * @param string $shortDescription
  */
 public function __construct($code, $description, $shortDescription)
 {
     parent::__construct($code, $description);
     $this->shortDescription = $shortDescription;
 }
コード例 #4
0
ファイル: testType.php プロジェクト: nblair/caos-php-client
 /**
  * @param string $code
  * @param string $description
  * @param testComponentsType $testComponents
  */
 public function __construct($code, $description, $testComponents)
 {
     parent::__construct($code, $description);
     $this->testComponents = $testComponents;
 }
コード例 #5
0
 /**
  * @param string $code
  * @param string $description
  */
 public function __construct($code, $description)
 {
     parent::__construct($code, $description);
 }
コード例 #6
0
ファイル: careerType.php プロジェクト: nblair/caos-php-client
 /**
  * @param string $code
  * @param string $description
  * @param entryEventsType $entryEvents
  */
 public function __construct($code, $description, $entryEvents)
 {
     parent::__construct($code, $description);
     $this->entryEvents = $entryEvents;
 }
コード例 #7
0
ファイル: planType.php プロジェクト: nblair/caos-php-client
 /**
  * @param string $code
  * @param string $description
  * @param codeDescriptionPairType $type
  * @param subPlansType $subPlans
  */
 public function __construct($code, $description, $type, $subPlans)
 {
     parent::__construct($code, $description);
     $this->type = $type;
     $this->subPlans = $subPlans;
 }
コード例 #8
0
 /**
  * @param string $code
  * @param string $description
  * @param range $range
  * @param testResultsType $testResults
  */
 public function __construct($code, $description, $range, $testResults)
 {
     parent::__construct($code, $description);
     $this->range = $range;
     $this->testResults = $testResults;
 }
コード例 #9
0
 /**
  * @param string $code
  * @param string $description
  * @param string $expectedGraduationTermCode
  * @param string $expectedGraduationTermDescription
  */
 public function __construct($code, $description, $expectedGraduationTermCode, $expectedGraduationTermDescription)
 {
     parent::__construct($code, $description);
     $this->expectedGraduationTermCode = $expectedGraduationTermCode;
     $this->expectedGraduationTermDescription = $expectedGraduationTermDescription;
 }