C/C++ Editor Text Hovers

Identifier:
org.eclipse.cdt.ui.textHovers

Description:
This extension point is used to plug-in text hovers in a C/C++ editor.

Configuration Markup:

<!ELEMENT extension (hover*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT hover EMPTY>

<!ATTLIST hover

id          IDREF #REQUIRED

class       CDATA #REQUIRED

label       CDATA #IMPLIED

description CDATA #IMPLIED

activate    (true | false) "false">


Examples:
The following is an example of a hover definition:


 <extension point="org.eclipse.cdt.ui.textHovers">
  <hover
    label="Debug Text Hover"
    perspective="org.eclipse.debug.ui.DebugPerspective"
    class="org.eclipse.cdt.debug.internal.ui.editors.DebugTextHover"
    id="org.eclipse.cdt.debug.internal.ui.editors.DebugTextHover">
  </hover>
 </extension>


Copyright (c) 2001, 2006 IBM Corporation and others.
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/ t; t;SPDX-License-Identifier: EPL-2.0