Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-ui/Component/Form/Element/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-ui/Component/Form/Element/ElementInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Ui\Component\Form\Element;

use Magento\Framework\View\Element\UiComponentInterface;

/**
 * Interface ElementInterface
 * @api
 * @since 100.0.2
 */
interface ElementInterface extends UiComponentInterface
{
    /**
     * @return string
     */
    public function getHtmlId();

    /**
     * @return string
     */
    public function getFormInputName();

    /**
     * @return bool
     */
    public function isReadonly();

    /**
     * @return string
     */
    public function getCssClasses();
}