瀏覽代碼

Docs: Used core/editor/editorui~EditorUI docs for InlineEditorUI.

Aleksander Nowodzinski 8 年之前
父節點
當前提交
07f6446bd3
共有 1 個文件被更改,包括 5 次插入17 次删除
  1. 5 17
      packages/ckeditor5-editor-inline/src/inlineeditorui.js

+ 5 - 17
packages/ckeditor5-editor-inline/src/inlineeditorui.js

@@ -17,7 +17,7 @@ import {
 /**
  * The inline editor UI class.
  *
- * @extends module:core/editor/standardeditorui~StandardEditorUI
+ * @implements module:core/editor/editorui~EditorUI
  */
 export default class InlineEditorUI {
 	/**
@@ -28,34 +28,22 @@ export default class InlineEditorUI {
 	 */
 	constructor( editor, view ) {
 		/**
-		 * Editor that the UI belongs to.
-		 *
-		 * @readonly
-		 * @member {module:core/editor/editor~Editor}
+		 * @inheritDoc
 		 */
 		this.editor = editor;
 
 		/**
-		 * View of the ui.
-		 *
-		 * @readonly
-		 * @member {module:ui/editorui/editoruiview~EditorUIView}
+		 * @inheritDoc
 		 */
 		this.view = view;
 
 		/**
-		 * Instance of the {@link module:ui/componentfactory~ComponentFactory}.
-		 *
-		 * @readonly
-		 * @member {module:ui/componentfactory~ComponentFactory}
+		 * @inheritDoc
 		 */
 		this.componentFactory = new ComponentFactory( editor );
 
 		/**
-		 * Keeps information about editor focus.
-		 *
-		 * @readonly
-		 * @member {module:utils/focustracker~FocusTracker}
+		 * @inheritDoc
 		 */
 		this.focusTracker = new FocusTracker();