]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/criteria/class_BaseCriteria.php
Continued:
[core.git] / framework / main / classes / criteria / class_BaseCriteria.php
index c7aff1ed2ee04488262bae124816c5023ef9a00e..e38926cf2e928fd3486b2518ca9930c664e30c08 100644 (file)
@@ -32,9 +32,9 @@ use Org\Mxchange\CoreFramework\Utils\String\StringUtils;
  */
 abstract class BaseCriteria extends BaseFrameworkSystem implements Criteria {
        /**
-        * Wrapper class name stored in config entry
+        * Frontend class name stored in config entry
         */
-       private $wrapperConfigEntry = '';
+       private $frontendConfigEntry = '';
 
        /**
         * Protected constructor
@@ -106,22 +106,22 @@ abstract class BaseCriteria extends BaseFrameworkSystem implements Criteria {
        }
 
        /**
-        * Setter for wrapper class name
+        * Setter for frontend class name
         *
-        * @param       $wrapperConfigEntry             Configuration entry which hold the wrapper class' name
+        * @param       $frontendConfigEntry            Configuration entry which hold the frontend class' name
         * @return      void
         */
-       public final function setWrapperConfigEntry (string $wrapperConfigEntry) {
-               $this->wrapperConfigEntry = $wrapperConfigEntry;
+       public final function setFrontendConfigEntry (string $frontendConfigEntry) {
+               $this->frontendConfigEntry = $frontendConfigEntry;
        }
 
        /**
-        * Getter for wrapper class name
+        * Getter for frontend class name
         *
-        * @return      $wrapperConfigEntry             Configuration entry which hold the wrapper class' name
+        * @return      $frontendConfigEntry            Configuration entry which hold the frontend class' name
         */
-       public final function getWrapperConfigEntry () {
-               return $this->wrapperConfigEntry;
+       public final function getFrontendConfigEntry () {
+               return $this->frontendConfigEntry;
        }
 
        /**