SQLBuilder UIComponentService

Identifier:
org.eclipse.datatools.sqltools.editor.core.SQLBuilderUIComponentService

Since:
DTP 1.6

Description:
This extension point enables the org.eclipse.datatools.sqltools.sqlbuilder plugin to contribute a DML dialog for the default UIComponentService. The extension point should not be extended by plugins other than the sqlbuilder plugin.

Configuration Markup:

<!ELEMENT extension (service)>

<!ATTLIST extension

point CDATA #REQUIRED

>


<!ELEMENT service EMPTY>

<!ATTLIST service

name  CDATA #REQUIRED

class CDATA #REQUIRED

>


Examples:


   <extension
         point="org.eclipse.datatools.sqltools.editor.core.SQLBuilderUIComponentService">
         <service
          name="SQL Query Builder"
   class="org.eclipse.datatools.sqltools.sqlbuilder.sqlbuilderdialog.SQLBuilderUIComponentService"/>
    </extension>

Contributes a SQLBuilderUIComponentService extension to the SQL editor. The org.eclipse.datatools.sqltools.sqlbuilder plugin provides the only implementation of this extension point.

Supplied Implementation:
The org.eclipse.datatools.sqltools.sqlbuilder plugin provides the only implementation of this extension point.


Copyright (c) 2008 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.