<?php/**
* @file
* Contains \Drupal\edit\Annotation\InPlaceEditor.
*/namespaceDrupal\edit\Annotation;
useDrupal\Component\Annotation\Plugin;
/**
* Defines an InPlaceEditor annotation object.
*
* @Annotation
*/class InPlaceEditorextends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* An array of in-place editors that have registered themselves as
* alternatives to this in-place editor.
*
* @var array
*/
public $alternativeTo;
/**
* The name of the module providing the in-place editor plugin.
*
* @var string
*/
public $module;
}