Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

XQuery Development Tools/Where to Start

< XQuery Development Tools
Revision as of 06:42, 28 May 2010 by Gabipetrovay.gmail.com (Talk | contribs) (New page: == 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 lo...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

XQDT features
Feature name Feature description Infrastructure provided by Plug-ins involved Sample implementation
Semantic Checker
  • 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.
XQDT
  • org.eclipse.wst.xquery.core
  • org.eclipse.wst.xquery.launching
  • ISemanticValidator
  • AbstractLocalInterpreterSemanticValidator

Back to the top