<?php
namespace Alekseon\CustomFormsBuilder\Model\Form\Attribute;

/**
 * Interceptor class for @see \Alekseon\CustomFormsBuilder\Model\Form\Attribute
 */
class Interceptor extends \Alekseon\CustomFormsBuilder\Model\Form\Attribute implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\Model\Context $context, \Magento\Framework\Registry $registry, \Alekseon\AlekseonEav\Model\Attribute\InputTypeRepository $inputTypeRepository, \Alekseon\AlekseonEav\Model\Attribute\InputValidatorRepository $inputValidatorRepository, \Alekseon\CustomFormsBuilder\Model\ResourceModel\Form\Attribute $resource, \Alekseon\CustomFormsBuilder\Model\ResourceModel\Form\Attribute\Collection $resourceCollection)
    {
        $this->___init();
        parent::__construct($context, $registry, $inputTypeRepository, $inputValidatorRepository, $resource, $resourceCollection);
    }

    /**
     * {@inheritdoc}
     */
    public function getBackendModels()
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getBackendModels');
        return $pluginInfo ? $this->___callPlugins('getBackendModels', func_get_args(), $pluginInfo) : parent::getBackendModels();
    }

    /**
     * {@inheritdoc}
     */
    public function getDefaultValue()
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDefaultValue');
        return $pluginInfo ? $this->___callPlugins('getDefaultValue', func_get_args(), $pluginInfo) : parent::getDefaultValue();
    }

    /**
     * {@inheritdoc}
     */
    public function hasDefaultValue()
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasDefaultValue');
        return $pluginInfo ? $this->___callPlugins('hasDefaultValue', func_get_args(), $pluginInfo) : parent::hasDefaultValue();
    }

    /**
     * {@inheritdoc}
     */
    public function getInputParamsConfig()
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getInputParamsConfig');
        return $pluginInfo ? $this->___callPlugins('getInputParamsConfig', func_get_args(), $pluginInfo) : parent::getInputParamsConfig();
    }
}
