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

Difference between revisions of "EDT:XMLConversionGenerationAndRuntime"

Line 1: Line 1:
 
General Information
 
General Information
  
XML conversion handles the conversion of records, handlers, and dictionaries to/from XML.
+
XML generation is container based generation and only supports XML conversion for records, handlers, and dictionaries to/from XML. The generators generate meta data for the part and field. The runtime uses the meta data to do the XML conversion. Conversion of dictionaries is done only by the runtime.
 +
 
Common Plugin Details
 
Common Plugin Details
 
org.eclipse.edt.compiler:
 
org.eclipse.edt.compiler:

Revision as of 07:46, 23 July 2012

General Information

XML generation is container based generation and only supports XML conversion for records, handlers, and dictionaries to/from XML. The generators generate meta data for the part and field. The runtime uses the meta data to do the XML conversion. Conversion of dictionaries is done only by the runtime.

Common Plugin Details org.eclipse.edt.compiler:

provides the mof model support. It contains the EGL source for XMLLib native type and the XML annotations in eglx.xml.binding.annotation. These annotations map to Java annotations in javax.xml.binding.annotation. The annotations are placed on the EGL fields and control how the records and handlers are converted to an XML string.

EDT:XMLConversionJavaGenerationAndRuntime


EDT:XMLConversionJavaScriptGenerationAndRuntime Testing

The Test suite is located in the IBM CVS. org.eclipse.edt.eunit.test/EGLSource/fvt/xml

Back to the top