You are here

class OpenApiGenerator in OpenAPI 8.2

Same name and namespace in other branches
  1. 8 src/Annotation/OpenApiGenerator.php \Drupal\openapi\Annotation\OpenApiGenerator

Defines an annotation object for OpenApiGenerator plugins.

Plugin Namespace: Plugin\openapi\OpenApiGenerator.

Hierarchy

Expanded class hierarchy of OpenApiGenerator

See also

Plugin API

1 class is annotated with OpenApiGenerator
NullGenerator in tests/modules/openapi_test/src/Plugin/openapi/OpenApiGenerator/NullGenerator.php
The test generator.

File

src/Annotation/OpenApiGenerator.php, line 16

Namespace

Drupal\openapi\Annotation
View source
class OpenApiGenerator extends Plugin {

  /**
   * The plugin id.
   *
   * @var string
   */
  public $id;

  /**
   * The plugin label.
   *
   * @var string
   */
  public $label;

}

Members

Namesort descending Modifiers Type Description Overrides
OpenApiGenerator::$id public property The plugin id.
OpenApiGenerator::$label public property The plugin label.
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 2