Difference between revisions of "XQuery Development Tools/Where to Start"
Line 12: | Line 12: | ||
! Feature name | ! Feature name | ||
! Feature description | ! Feature description | ||
− | |||
! Plug-ins involved | ! Plug-ins involved | ||
! Need to implement | ! Need to implement | ||
Line 23: | Line 22: | ||
** processor validation (e.g. only allow executables called zorba.exe to be added as the Zorba processor type) | ** processor validation (e.g. only allow executables called zorba.exe to be added as the Zorba processor type) | ||
** launching configuration (e.g. add custom launching parameters to your processor type upon execution) | ** launching configuration (e.g. add custom launching parameters to your processor type upon execution) | ||
− | |||
| | | | ||
* org.eclipse.wst.xquery.launching | * org.eclipse.wst.xquery.launching | ||
Line 43: | Line 41: | ||
| | | | ||
* After the syntax check is complete without errors, a particular XQuery processor is allowed to report other errors in the XQuery code. E.g. function not available, namespace not declared, variable not defined, or even more complex problems that a particular processor may detect. | * After the syntax check is complete without errors, a particular XQuery processor is allowed to report other errors in the XQuery code. E.g. function not available, namespace not declared, variable not defined, or even more complex problems that a particular processor may detect. | ||
− | |||
| | | | ||
* org.eclipse.wst.xquery.core | * org.eclipse.wst.xquery.core | ||
Line 50: | Line 47: | ||
* <code>ISemanticValidator</code> | * <code>ISemanticValidator</code> | ||
* <code>AbstractLocalInterpreterSemanticValidator</code> | * <code>AbstractLocalInterpreterSemanticValidator</code> | ||
− | * your IInterpreterInstall needs to implement <code>ISemanticValidatingInterpreterInstall</code> and provide an instance of your | + | * your <code>IInterpreterInstall</code> needs to implement <code>ISemanticValidatingInterpreterInstall</code> and provide an instance of your <code>ISemanticValidator</code> |
| | | | ||
* <code>ZorbaSemanticValidator</code> | * <code>ZorbaSemanticValidator</code> |
Revision as of 08:09, 28 May 2010
What is the "Where to Start" page?
This page gathers a list of features of XQDT and the place in the project where this feature is implemented or where the developer should first look and start understanding and debugging the functionality.
Feature table
NOTE: For all the classes below we have omitted the fully qualified name to keep the descriptions shorter. For example, XQDTInterpreterInstallType
refers to org.eclipse.wst.xquery.launching.XQDTInterpreterInstallType
. Eclipse helps you find these types with the "Open Type" dialog (available under the "Navigate" menu or by pressing the key combination: Ctrl-Shift-T). In case you find more classes having the same name (though not the case so far), just choose the one from our project, that is, having a package name starting with: org.eclipse.wst.xquery
.
Feature name | Feature description | Plug-ins involved | Need to implement | Sample implementation |
---|---|---|---|---|
New XQuery Processor Type |
|
|
|
|
Semantic Checker |
|
|
|
|