SQL Editor Text Hover

org.eclipse.datatools.sqltools.sqleditor.texthover

[Enter the first release in which this extension point appears.]

This extension point provides support for text hover in SQL editor. Extensions register a org.eclipse.datatools.sqltools.sqleditor.sql.AbstractSQLEditorTextHover class which will provide text hover information.

<!ELEMENT extension (hover+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT hover EMPTY>

<!ATTLIST hover

id    CDATA #IMPLIED

class CDATA #REQUIRED>


<extension point=

"org.eclipse.datatools.sqltools.sqleditor.texthover"

>

<hover class=

"com.sybase.stf.dmp.editorextension.SQLDebugHover"

id=

"com.sybase.stf.dmp.editor.hover"

/>

</extension>

Contribute a text hover that will give variable value when the current position is on a variable name.

the class must implement org.eclipse.datatools.sqltools.sqleditor.sql.AbstractSQLEditorTextHover

[Enter information about supplied implementation of this extension point.]