/**
  * Override method to perform a property "Get"
  * This will get the value of $strName
  *
  * @param string $strName Name of the property to get
  * @return mixed
  */
 public function __get($strName)
 {
     switch ($strName) {
         ///////////////////
         // Member Variables
         ///////////////////
         case 'RolePermissionId':
             /**
              * Gets the value for intRolePermissionId (Read-Only PK)
              * @return integer
              */
             return $this->intRolePermissionId;
         case 'RoleId':
             /**
              * Gets the value for intRoleId (Not Null)
              * @return integer
              */
             return $this->intRoleId;
         case 'PermissionId':
             /**
              * Gets the value for intPermissionId (Not Null)
              * @return integer
              */
             return $this->intPermissionId;
             ///////////////////
             // Member Objects
             ///////////////////
         ///////////////////
         // Member Objects
         ///////////////////
         case 'Role':
             /**
              * Gets the value for the NarroRole object referenced by intRoleId (Not Null)
              * @return NarroRole
              */
             try {
                 if (!$this->objRole && !is_null($this->intRoleId)) {
                     $this->objRole = NarroRole::Load($this->intRoleId);
                 }
                 return $this->objRole;
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
         case 'Permission':
             /**
              * Gets the value for the NarroPermission object referenced by intPermissionId (Not Null)
              * @return NarroPermission
              */
             try {
                 if (!$this->objPermission && !is_null($this->intPermissionId)) {
                     $this->objPermission = NarroPermission::Load($this->intPermissionId);
                 }
                 return $this->objPermission;
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
             ////////////////////////////
             // Virtual Object References (Many to Many and Reverse References)
             // (If restored via a "Many-to" expansion)
             ////////////////////////////
         ////////////////////////////
         // Virtual Object References (Many to Many and Reverse References)
         // (If restored via a "Many-to" expansion)
         ////////////////////////////
         case '__Restored':
             return $this->__blnRestored;
         default:
             try {
                 return parent::__get($strName);
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
     }
 }
 /**
  * Reload this NarroPermission from the database.
  * @return void
  */
 public function Reload()
 {
     // Make sure we are actually Restored from the database
     if (!$this->__blnRestored) {
         throw new QCallerException('Cannot call Reload() on a new, unsaved NarroPermission object.');
     }
     $this->DeleteCache();
     // Reload the Object
     $objReloaded = NarroPermission::Load($this->intPermissionId);
     // Update $this's local variables to match
     $this->strPermissionName = $objReloaded->strPermissionName;
 }
 /**
  * Static Helper Method to Create using PK arguments
  * You must pass in the PK arguments on an object to load, or leave it blank to create a new one.
  * If you want to load via QueryString or PathInfo, use the CreateFromQueryString or CreateFromPathInfo
  * static helper methods.  Finally, specify a CreateType to define whether or not we are only allowed to
  * edit, or if we are also allowed to create a new one, etc.
  *
  * @param mixed $objParentObject QForm or QPanel which will be using this NarroPermissionMetaControl
  * @param integer $intPermissionId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing NarroPermission object creation - defaults to CreateOrEdit
  * @return NarroPermissionMetaControl
  */
 public static function Create($objParentObject, $intPermissionId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intPermissionId)) {
         $objNarroPermission = NarroPermission::Load($intPermissionId);
         // NarroPermission was found -- return it!
         if ($objNarroPermission) {
             return new NarroPermissionMetaControl($objParentObject, $objNarroPermission);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a NarroPermission object with PK arguments: ' . $intPermissionId);
             }
         }
         // If EditOnly is specified, throw an exception
     } else {
         if ($intCreateType == QMetaControlCreateType::EditOnly) {
             throw new QCallerException('No PK arguments specified');
         }
     }
     // If we are here, then we need to create a new record
     return new NarroPermissionMetaControl($objParentObject, new NarroPermission());
 }