interface AnnotationInterface in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Annotation/AnnotationInterface.php \Drupal\Component\Annotation\AnnotationInterface
Defines a common interface for classed annotations.
Hierarchy
- interface \Drupal\Component\Annotation\AnnotationInterface
Expanded class hierarchy of AnnotationInterface
All classes that implement AnnotationInterface
3 files declare their use of AnnotationInterface
- AnnotatedClassDiscovery.php in core/
lib/ Drupal/ Core/ Plugin/ Discovery/ AnnotatedClassDiscovery.php - Contains \Drupal\Core\Plugin\Discovery\AnnotatedClassDiscovery.
- AnnotatedClassDiscovery.php in core/
lib/ Drupal/ Component/ Annotation/ Plugin/ Discovery/ AnnotatedClassDiscovery.php - Contains \Drupal\Component\Annotation\Plugin\Discovery\AnnotatedClassDiscovery.
- ViewsPluginAnnotationBase.php in core/
modules/ views/ src/ Annotation/ ViewsPluginAnnotationBase.php - Contains \Drupal\views\Annotation\ViewsPluginAnnotationBase.
File
- core/
lib/ Drupal/ Component/ Annotation/ AnnotationInterface.php, line 13 - Contains \Drupal\Component\Annotation\AnnotationInterface.
Namespace
Drupal\Component\AnnotationView source
interface AnnotationInterface {
/**
* Gets the value of an annotation.
*/
public function get();
/**
* Gets the name of the provider of the annotated class.
*
* @return string
*/
public function getProvider();
/**
* Sets the name of the provider of the annotated class.
*
* @param string $provider
*/
public function setProvider($provider);
/**
* Gets the unique ID for this annotated class.
*
* @return string
*/
public function getId();
/**
* Gets the class of the annotated class.
*
* @return string
*/
public function getClass();
/**
* Sets the class of the annotated class.
*
* @param string $class
*/
public function setClass($class);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AnnotationInterface:: |
public | function | Gets the value of an annotation. | 4 |
AnnotationInterface:: |
public | function | Gets the class of the annotated class. | 2 |
AnnotationInterface:: |
public | function | Gets the unique ID for this annotated class. | 2 |
AnnotationInterface:: |
public | function | Gets the name of the provider of the annotated class. | 2 |
AnnotationInterface:: |
public | function | Sets the class of the annotated class. | 2 |
AnnotationInterface:: |
public | function | Sets the name of the provider of the annotated class. | 2 |