You are here

abstract class AnnotationBase in Service Container 7.2

Same name and namespace in other branches
  1. 7 lib/Drupal/Component/Annotation/AnnotationBase.php \Drupal\Component\Annotation\AnnotationBase

Provides a base class for classed annotations.

Hierarchy

Expanded class hierarchy of AnnotationBase

1 file declares its use of AnnotationBase
Translation.php in lib/Drupal/Core/Annotation/Translation.php
Contains \Drupal\Core\Annotation\Translation.

File

lib/Drupal/Component/Annotation/AnnotationBase.php, line 13
Contains \Drupal\Component\Annotation\AnnotationBase.

Namespace

Drupal\Component\Annotation
View source
abstract class AnnotationBase implements AnnotationInterface {

  /**
   * The annotated class ID.
   *
   * @var string
   */
  public $id;

  /**
   * The class used for this annotated class.
   *
   * @var string
   */
  protected $class;

  /**
   * The provider of the annotated class.
   *
   * @var string
   */
  protected $provider;

  /**
   * {@inheritdoc}
   */
  public function getProvider() {
    return $this->provider;
  }

  /**
   * {@inheritdoc}
   */
  public function setProvider($provider) {
    $this->provider = $provider;
  }

  /**
   * {@inheritdoc}
   */
  public function getId() {
    return $this->id;
  }

  /**
   * {@inheritdoc}
   */
  public function getClass() {
    return $this->class;
  }

  /**
   * {@inheritdoc}
   */
  public function setClass($class) {
    $this->class = $class;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AnnotationBase::$class protected property The class used for this annotated class.
AnnotationBase::$id public property The annotated class ID.
AnnotationBase::$provider protected property The provider of the annotated class.
AnnotationBase::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
AnnotationBase::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId 1
AnnotationBase::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
AnnotationBase::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
AnnotationBase::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
AnnotationInterface::get public function Gets the value of an annotation. 3