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 "Idas Implementation Todo"

Line 1: Line 1:
 
This list represents implementation (non-interface) work needing to be done. Work on interfaces is documented on the [[Idas Architectural Todo]] page.
 
This list represents implementation (non-interface) work needing to be done. Work on interfaces is documented on the [[Idas Architectural Todo]] page.
  
* Implement registry classes
+
Moved todo items to [https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=Higgins&component=IdAS bug list]
* Add some kind of ISimpleValue factory.
+
** This would be used when (either an IdAS consumer or provider) one wishes to create an ISimpleValue given a URI (either the higgins value type like higgins:stringSimpleValue, or the xml type like xml:string), and a Java object (like String).
+
 
+
{| border="1" cellpadding="2"
+
|+ Generated from tasks in code
+
! Description !! Resource !! In Folder || Location
+
|-
+
|make sure getCanonical() meets the canonical rules for xsd:float. || BasicValueDouble.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 23
+
|-
+
|make sure getCanonical() meets the canonical rules for xsd:float. || BasicValueFloat.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 21
+
|-
+
|make sure getCanonical() meets the canonical rules for xsd:integer. Nothing in the BigInteger Javadoc leads me to believe it's incorrect. || BasicValueInteger.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 23
+
|-
+
|make sure this meets the canonical rules for xsd:base64Binary || BasicValueBase64Binary.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 51
+
|-
+
|make sure this meets the canonical rules for xsd:base64Binary || BasicValueHexBinary.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 47
+
|-
+
|provide a way in which a consumer can discover allowed/supported comparators. || IFilterAssertion.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas || line 34
+
|-
+
|This does not enforce xsd:language restrictions yet. || BasicValueLanguage.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 22
+
|-
+
|This does not enforce xsd:Name restrictions yet. || BasicValueName.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 29
+
|-
+
|This does not enforce xsd:NCName restrictions yet. || BasicValueNCName.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 22
+
|-
+
|This does not enforce xsd:NMTOKEN restrictions yet. || BasicValueNMTOKEN.java || org.eclipse.higgins.idas/src/org/eclipse/higgins/idas/impl || line 22
+
|}
+

Revision as of 17:55, 22 January 2007

This list represents implementation (non-interface) work needing to be done. Work on interfaces is documented on the Idas Architectural Todo page.

Moved todo items to bug list

Back to the top