Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/DesignDocs/277920/Phase2"

(XML Metadata)
(Annotations)
Line 11: Line 11:
 
! Annotation      !! Package !! Type  !! Field  !! Method
 
! Annotation      !! Package !! Type  !! Field  !! Method
 
|-
 
|-
| XmlAccessorOrder || X      || X      ||   ||  
+
| [http://java.sun.com/javase/6/docs/api/javax/xml/bind/annotation/XmlAccessorOrder.html XmlAccessorOrder] || X      || X      ||   ||  
 
|-
 
|-
| XmlAccessorType || X      || X      ||   ||  
+
| [http://java.sun.com/javase/6/docs/api/javax/xml/bind/annotation/XmlAccessorType.html XmlAccessorType]  || X      || X      ||   ||  
 
|-
 
|-
| XmlRootElement   ||    || X      ||   ||  
+
| [http://java.sun.com/javase/6/docs/api/javax/xml/bind/annotation/XmlRootElement.html XmlRootElement]    ||    || X      ||   ||  
 
|-
 
|-
| XmlType         ||    || X      ||   ||  
+
| [http://java.sun.com/javase/6/docs/api/javax/xml/bind/annotation/XmlType.html XmlType]                  ||    || X      ||   ||  
 
|}
 
|}
  

Revision as of 09:24, 6 July 2009

Phase 2

Provide support for high level metadata.

Annotations

The following annotations will be targetted in this phase:

Annotation Package Type Field Method
XmlAccessorOrder X X    
XmlAccessorType X X    
XmlRootElement   X    
XmlType   X    

Java Metadata

XML Metadata

xml-accessor-order

If this is present in the XML then it completely replaces the corresponding annotation.

xml-accessor-type

If this is present in the XML then it completely replaces the corresponding annotation.

xml-root-element

If this is present in the XML then it completely replaces the corresponding annotation.

xml-type

If this is present in the XML then it completely replaces the corresponding annotation.

Back to the top