SQL Editor Text Hover

Identifier:
org.eclipse.datatools.sqltools.sqleditor.texthover

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

Description:
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.

Configuration Markup:

<!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>


Examples:


<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.

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

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


Copyright (c) 2005 Sybase, Inc. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html Contributors: Sybase, Inc. - initial API and implementation