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 "Dereferencing Complex Values Backlog"

(Proposal)
(Proposal)
Line 11: Line 11:
 
   becomes:
 
   becomes:
 
     IEntity IAttribute.addComplexValue(IEntity)
 
     IEntity IAttribute.addComplexValue(IEntity)
 +
  or maybe:
 +
    IEntity IAttribute.addEntitiyValue(IEntity)
  
 
== See Also ==
 
== See Also ==
 
* [[IdAS Backlog]]
 
* [[IdAS Backlog]]

Revision as of 16:54, 12 March 2008

About

This page describes a proposed change to the IdAP API and the IContext SPI. This page was created to support a discussion.

Proposal

  • We change the IdAS API and the IContext SPI to return IEntity implementations
  • In other words, eliminate IComplexValue and replace it with IEntity

Examples...

 this:
   IComplexAttrValue IAttribute.addComplexValue(URI dataType)
 becomes:
   IEntity IAttribute.addComplexValue(IEntity)
 or maybe:
   IEntity IAttribute.addEntitiyValue(IEntity)

See Also

Back to the top